From 54637c3d2b8a7f1cba60f230703d3c65141b0a24 Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Sun, 13 May 2007 19:47:19 +0200 Subject: fixed some xhtml validity issues in config manager darcs-hash:20070513174719-d5083-4827d529f2d30011a1bb7d3cc09cf15779629c19.gz --- lib/plugins/config/settings/config.class.php | 30 ++++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'lib/plugins/config/settings') diff --git a/lib/plugins/config/settings/config.class.php b/lib/plugins/config/settings/config.class.php index 9b07ca9c8..4d694de1f 100644 --- a/lib/plugins/config/settings/config.class.php +++ b/lib/plugins/config/settings/config.class.php @@ -372,8 +372,8 @@ if (!class_exists('setting')) { $key = htmlspecialchars($this->_key); $value = htmlspecialchars($value); - $label = ''; - $input = ''; + $label = ''; + $input = ''; return array($label,$input); } @@ -432,8 +432,8 @@ if (!class_exists('setting_string')) { $key = htmlspecialchars($this->_key); $value = htmlspecialchars($value); - $label = ''; - $input = ''; + $label = ''; + $input = ''; return array($label,$input); } } @@ -463,8 +463,8 @@ if (!class_exists('setting_password')) { $key = htmlspecialchars($this->_key); - $label = ''; - $input = ''; + $label = ''; + $input = ''; return array($label,$input); } } @@ -524,8 +524,8 @@ if (!class_exists('setting_onoff')) { $key = htmlspecialchars($this->_key); $checked = ($value) ? ' checked="checked"' : ''; - $label = ''; - $input = '
'; + $label = ''; + $input = '
'; return array($label,$input); } @@ -570,10 +570,10 @@ if (!class_exists('setting_multichoice')) { $key = htmlspecialchars($this->_key); - $label = ''; + $label = ''; $input = "
\n"; - $input .= ''."\n"; foreach ($this->_choices as $choice) { $selected = ($value == $choice) ? ' selected="selected"' : ''; $option = $plugin->getLang($this->_key.'_o_'.$choice); @@ -731,8 +731,8 @@ if (!class_exists('setting_multicheckbox')) { $plugin->getLang($this->_key.'_'.$choice) : htmlspecialchars($choice)); $input .= '
'."\n"; - $input .= '\n"; - $input .= '\n"; + $input .= '\n"; + $input .= '\n"; $input .= "
\n"; // remove this action from the disabledactions array @@ -747,11 +747,11 @@ if (!class_exists('setting_multicheckbox')) { " selectiondefault" : ""; $input .= '
'."\n"; - $input .= '\n"; - $input .= '\n"; + $input .= '\n"; + $input .= '\n"; $input .= "
\n"; -// $label = ''; +// $label = ''; $label = $this->prompt($plugin); return array($label,$input); } -- cgit v1.2.3