From 4ef46afbf05c52ad3a225e2238529c5f717fe049 Mon Sep 17 00:00:00 2001
From: Pim van den Berg
Date: Mon, 10 Feb 2014 22:21:47 +0100
Subject: use & instead of & in html
---
inc/html.inc.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'inc/html.inc.php')
diff --git a/inc/html.inc.php b/inc/html.inc.php
index b07be8a..e6c6f6d 100644
--- a/inc/html.inc.php
+++ b/inc/html.inc.php
@@ -109,7 +109,7 @@ EOT;
function plugin_header($host, $plugin) {
global $CONFIG;
- return printf("
\n", $CONFIG['weburl'], $host, $plugin, $plugin);
+ return printf("\n", $CONFIG['weburl'], $host, $plugin, $plugin);
}
function plugins_list($host, $selected_plugins = array()) {
@@ -130,7 +130,7 @@ function plugins_list($host, $selected_plugins = array()) {
# first the ones defined as ordered
foreach($CONFIG['overview'] as $plugin) {
if (in_array($plugin, $plugins)) {
- printf("%4\$s\n",
+ printf("%4\$s\n",
selected_plugin($plugin, $selected_plugins),
$CONFIG['weburl'],
$host,
@@ -142,7 +142,7 @@ function plugins_list($host, $selected_plugins = array()) {
# other plugins
foreach($plugins as $plugin) {
if (!in_array($plugin, $CONFIG['overview'])) {
- printf("%4\$s\n",
+ printf("%4\$s\n",
selected_plugin($plugin, $selected_plugins),
$CONFIG['weburl'],
$host,
--
cgit v1.1