Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Nov 2012 21:24:54 +0000 (UTC)
From:      Adam Weinberger <adamw@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307496 - in head/mail/squirrelmail: . files
Message-ID:  <201211162124.qAGLOspZ065776@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 = '';



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211162124.qAGLOspZ065776>