Date: Mon, 4 Aug 2014 09:43:04 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363984 - in head/multimedia/zoneminder: . files Message-ID: <53df55a8.53f6.3c29ffc4@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Mon Aug 4 09:43:03 2014 New Revision: 363984 URL: http://svnweb.freebsd.org/changeset/ports/363984 QAT: https://qat.redports.org/buildarchive/r363984/ Log: multimedia/zoneminder: fix syntax error in main php page PR: 192363 Submitted by: p-fbsd-bugs@ziemba.us Added: head/multimedia/zoneminder/files/patch-web-includes-functions.php (contents, props changed) Modified: head/multimedia/zoneminder/Makefile Modified: head/multimedia/zoneminder/Makefile ============================================================================== --- head/multimedia/zoneminder/Makefile Mon Aug 4 09:32:35 2014 (r363983) +++ head/multimedia/zoneminder/Makefile Mon Aug 4 09:43:03 2014 (r363984) @@ -3,7 +3,7 @@ PORTNAME= zoneminder PORTVERSION= 1.25.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= http://www2.zoneminder.com/downloads/ \ http://www.zoneminder.com/downloads/ Added: head/multimedia/zoneminder/files/patch-web-includes-functions.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/zoneminder/files/patch-web-includes-functions.php Mon Aug 4 09:43:03 2014 (r363984) @@ -0,0 +1,11 @@ +--- web/includes/functions.php.orig 2011-08-03 10:33:59.000000000 -0700 ++++ web/includes/functions.php 2014-08-03 00:19:38.000000000 -0700 +@@ -648,7 +648,7 @@ + foreach ( $contents as $contentValue => $contentText ) + { + ?> +-<option value="<?= $contentValue ?>"<?php if ( $value == $contentValue ) { ?> selected="selected"<? } ?>><?= validHtmlStr($contentText) ?></option> ++<option value="<?= $contentValue ?>"<?php if ( $value == $contentValue ) { ?> selected="selected"<?php } ?>><?= validHtmlStr($contentText) ?></option> + <?php + } + ?>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53df55a8.53f6.3c29ffc4>