Bug#802614: flask-login should produce python3-flask-login package

2015-10-21 Thread Marques Johansson
Package: flask-login Version: 0.2.6-1 The packages produce by flask-login are behind the upstream and https://github.com/maxcountryman/flask-login/ which is at 0.3.2 and there is no python3 package generated.

Bug#230293: a simple fix for prefs.php

2005-02-24 Thread Marques Johansson
On Thu, 2005-02-24 at 20:19 +0100, Ola Lundqvist wrote: >tags 230293 + patch >thanks > >Hello > >On Mon, Feb 21, 2005 at 02:32:38PM -0500, Marques Johansson wrote: >> Change >> require_once 'imp/lib/constants.php'; >> to >> require_once

Bug#296342: horde2.conf should include ifmodule php5

2005-02-21 Thread Marques Johansson
Package: horde2 Version: 2.2.7-6 Severity: normal /etc/apache2/conf.d/horde2.conf should set the same php options in the presence of php5. # Added for HORDE2 Alias /horde2 /usr/share/horde2 Options FollowSymLinks AllowOverride Limit order allow,deny allow from all php_flag magic_quotes_gpc

Bug#230293: a simple fix for prefs.php

2005-02-21 Thread Marques Johansson
Change require_once 'imp/lib/constants.php'; to require_once IMP_BASE . '/lib/constants.php'; This worked for me after a recent update. -- Marques Johansson [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsub

Bug#296334: compose.php(162): !isset($this->mailRFC822) breaks in php5

2005-02-21 Thread Marques Johansson
Package: imp3 Version: 3.2.6-3 Severity: normal The exact error is something about $this not being an object. The first step in fixing this is to change line 162 from if (!isset($this->mailRFC822)) { to if (!is_object($this) || !isset($this->mailRFC822)) { ... This allows you to