svn commit: r363984 - in head/multimedia/zoneminder: . files
Kurt Jaeger
pi at FreeBSD.org
Mon Aug 4 09:43:04 UTC 2014
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 at 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
+ }
+ ?>
More information about the svn-ports-head
mailing list