I've uploaded an NMU of mnemo to tfheen's delayed queue on gluck to fix
this bug. It will be uploaded to Debian in 7 days. If you (Fabio
Rafael da Rosa <[EMAIL PROTECTED]>) oppose this, I'll
immediately cancel it.
--
Lionel
diff --recursive -u mnemo-1.1.bak/debian/changelog mnemo-1.1/debian/changelog
--- mnemo-1.1.bak/debian/changelog 2005-11-20 11:51:21.259345575 +0100
+++ mnemo-1.1/debian/changelog 2005-11-20 11:50:29.058660457 +0100
@@ -1,3 +1,12 @@
+mnemo (1.1-2.2) unstable; urgency=low
+
+ * NMU
+ * PHP4.4 compatibility: Fix "Only variable references should be returned
+ by reference" error messages (closes: #323268)
+ * Drop dependency on apache-common (closes: #281116, #338982)
+
+ -- Lionel Elie Mamane <[EMAIL PROTECTED]> Sun, 20 Nov 2005 11:50:29 +0100
+
mnemo (1.1-2.1) unstable; urgency=HIGH
* NMU
diff --recursive -u mnemo-1.1.bak/debian/control mnemo-1.1/debian/control
--- mnemo-1.1.bak/debian/control 2005-11-20 11:51:21.248347117 +0100
+++ mnemo-1.1/debian/control 2005-11-20 11:52:05.095202857 +0100
@@ -7,7 +7,7 @@
Package: mnemo
Architecture: all
-Depends: horde2 (>=2.1), php4-pgsql | php4-mysql, wwwconfig-common,
apache-common
+Depends: horde2 (>=2.1), php4-pgsql | php4-mysql, wwwconfig-common
Description: Notes and Memo Application
Mnemo is the Horde notes and memos application. It lets users keep
free-text notes and other bits of information which doesn't fit as a
diff --recursive -u mnemo-1.1.bak/lib/Driver.php mnemo-1.1/lib/Driver.php
--- mnemo-1.1.bak/lib/Driver.php 2002-12-30 01:57:38.000000000 +0100
+++ mnemo-1.1/lib/Driver.php 2005-11-20 11:53:08.603303468 +0100
@@ -61,7 +61,8 @@
include_once dirname(__FILE__) . '/Driver/' . $driver . '.php';
$class = 'Mnemo_Driver_' . $driver;
if (class_exists($class)) {
- return new $class($user, $params);
+ $result = new $class($user, $params);
+ return $result;
} else {
return false;
}