Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Jun 2016 10:28:23 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r416669 - in head/mail/roundcube: . files
Message-ID:  <201606101028.u5AASNrQ048901@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Fri Jun 10 10:28:22 2016
New Revision: 416669
URL: https://svnweb.freebsd.org/changeset/ports/416669

Log:
  mail/roundcube: fix syntax error in patch, bump PORTREVISION

Modified:
  head/mail/roundcube/Makefile
  head/mail/roundcube/files/patch-program_lib_Roundcube_rcube_session.php

Modified: head/mail/roundcube/Makefile
==============================================================================
--- head/mail/roundcube/Makefile	Fri Jun 10 10:25:20 2016	(r416668)
+++ head/mail/roundcube/Makefile	Fri Jun 10 10:28:22 2016	(r416669)
@@ -2,6 +2,7 @@
 
 PORTNAME=	roundcube
 DISTVERSION=	1.2.0
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES?=	mail www
 MASTER_SITES=	https://github.com/roundcube/roundcubemail/releases/download/${DISTVERSION}/

Modified: head/mail/roundcube/files/patch-program_lib_Roundcube_rcube_session.php
==============================================================================
--- head/mail/roundcube/files/patch-program_lib_Roundcube_rcube_session.php	Fri Jun 10 10:25:20 2016	(r416668)
+++ head/mail/roundcube/files/patch-program_lib_Roundcube_rcube_session.php	Fri Jun 10 10:28:22 2016	(r416669)
@@ -13,7 +13,7 @@
          // if there are cached vars, update store, else insert new data
          if ($oldvars) {
 -            $newvars = $this->_fixvars($vars, $oldvars);
-+            $newvars = $vars);
++            $newvars = $vars;
              return $this->update($key, $newvars, $oldvars);
          }
          else {



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