summaryrefslogtreecommitdiffstats
path: root/usr/local
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2014-07-11 15:27:59 -0400
committerjim-p <jimp@pfsense.org>2014-07-11 15:27:59 -0400
commite860ec1d0e9e5d83b866e1424f75ad98a0b24379 (patch)
tree096fb9bf94e9b21093df7cc90f0587f4c2c88b6e /usr/local
parent720c529f2890708c8dca6264924ec5b1afbf0daf (diff)
downloadpfsense-e860ec1d0e9e5d83b866e1424f75ad98a0b24379.zip
pfsense-e860ec1d0e9e5d83b866e1424f75ad98a0b24379.tar.gz
Fix PHP script closing tag placement.
Diffstat (limited to 'usr/local')
-rw-r--r--usr/local/www/pkg_mgr_installed.php4
-rw-r--r--usr/local/www/pkg_mgr_settings.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/pkg_mgr_installed.php b/usr/local/www/pkg_mgr_installed.php
index 17839eb..f819fb7 100644
--- a/usr/local/www/pkg_mgr_installed.php
+++ b/usr/local/www/pkg_mgr_installed.php
@@ -93,11 +93,11 @@ include("head.inc");
/* Print package server mismatch warning. See https://redmine.pfsense.org/issues/484 */
if (!verify_all_package_servers())
- print_info_box(package_server_mismatch_message()); ?>
+ print_info_box(package_server_mismatch_message());
/* Print package server SSL warning. See https://redmine.pfsense.org/issues/484 */
if (check_package_server_ssl() === false)
- print_info_box(package_server_ssl_failure_message());
+ print_info_box(package_server_ssl_failure_message()); ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="packages installed">
<tr>
diff --git a/usr/local/www/pkg_mgr_settings.php b/usr/local/www/pkg_mgr_settings.php
index cd7fa42..d483984 100644
--- a/usr/local/www/pkg_mgr_settings.php
+++ b/usr/local/www/pkg_mgr_settings.php
@@ -81,11 +81,11 @@ function enable_altpkgrepourl(enable_over) {
/* Print package server mismatch warning. See https://redmine.pfsense.org/issues/484 */
if (!verify_all_package_servers())
- print_info_box(package_server_mismatch_message()); ?>
+ print_info_box(package_server_mismatch_message());
/* Print package server SSL warning. See https://redmine.pfsense.org/issues/484 */
if (check_package_server_ssl() === false)
- print_info_box(package_server_ssl_failure_message());
+ print_info_box(package_server_ssl_failure_message()); ?>
<?php if ($input_errors) print_input_errors($input_errors); ?>
OpenPOWER on IntegriCloud