svn commit: r307496 - in head/mail/squirrelmail: . files
Adam Weinberger
adamw at FreeBSD.org
Fri Nov 16 21:24:55 UTC 2012
Author: adamw
Date: Fri Nov 16 21:24:54 2012
New Revision: 307496
URL: http://svnweb.freebsd.org/changeset/ports/307496
Log:
Use the php54-safe sqsession_unregister() instead of the deprecated
and removed session_unregister(). This is solely a php-5.4 fix.
PORTREVISION bump, but since this port does not officially support
php-5.4 I have no plans to merge this patch to RELENG_9_1_0.
Feature safe: yes
Added:
head/mail/squirrelmail/files/patch-plugins-message_details-message_details_bottom.php (contents, props changed)
Modified:
head/mail/squirrelmail/Makefile
Modified: head/mail/squirrelmail/Makefile
==============================================================================
--- head/mail/squirrelmail/Makefile Fri Nov 16 18:43:55 2012 (r307495)
+++ head/mail/squirrelmail/Makefile Fri Nov 16 21:24:54 2012 (r307496)
@@ -7,7 +7,7 @@
PORTNAME= squirrelmail
PORTVERSION= 1.4.22
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= mail www
MASTER_SITES= SF/${PORTNAME}/stable/${PORTVERSION}
DISTNAME= ${PORTNAME}-webmail-${PORTVERSION}
Added: head/mail/squirrelmail/files/patch-plugins-message_details-message_details_bottom.php
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/mail/squirrelmail/files/patch-plugins-message_details-message_details_bottom.php Fri Nov 16 21:24:54 2012 (r307496)
@@ -0,0 +1,11 @@
+--- plugins/message_details/message_details_bottom.php.orig 2012-11-16 16:16:25.000000000 -0500
++++ plugins/message_details/message_details_bottom.php 2012-11-16 16:16:49.000000000 -0500
+@@ -85,7 +85,7 @@
+ $messageheaderstart=false;
+ $boundaries = array();
+ $entities = array();
+-session_unregister("entities");
++sqsession_unregister("entities");
+ $pre = '<b>';
+ $end = '</b>';
+ $entStr = '';
More information about the svn-ports-head
mailing list