1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

multimedia/zoneminder: fix syntax error in main php page

PR:		192363
Submitted by:	p-fbsd-bugs@ziemba.us
This commit is contained in:
Kurt Jaeger 2014-08-04 09:43:03 +00:00
parent ecc03bba0b
commit bdee884ec7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=363984
2 changed files with 12 additions and 1 deletions

View File

@ -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/

View File

@ -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
}
?>