aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-06-06 14:55:54 +0200
committerfabrixxm <fabrix.xm@gmail.com>2011-06-06 14:55:54 +0200
commit76f4d85d9a780d1fdfd130cc625a25dd88f4efb7 (patch)
treedd1016a0d40321a279f9cb1ed79412424a4e2d68 /mod/settings.php
parent4c629e274bbf368e79e47133869c923a2e6dd4a9 (diff)
downloadvolse-hubzilla-76f4d85d9a780d1fdfd130cc625a25dd88f4efb7.tar.gz
volse-hubzilla-76f4d85d9a780d1fdfd130cc625a25dd88f4efb7.tar.bz2
volse-hubzilla-76f4d85d9a780d1fdfd130cc625a25dd88f4efb7.zip
Small fix to theme selector
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php
index f976bdf8f..916e04270 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -432,7 +432,7 @@ function settings_content(&$a) {
$selected = (($f == $_SESSION['theme']) || ($f === $default_theme && (! x($_SESSION,'theme')))
? ' selected="selected" ' : '' );
$theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
- $theme_selector .= '<option val="' . $f . '"' . $selected . '>' . $theme_name . '</option>';
+ $theme_selector .= '<option value="' . $f . '"' . $selected . '>' . $theme_name . '</option>';
}
}