diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php index ad5dff4a..2190dc0e 100644 --- a/classes/pref/prefs.php +++ b/classes/pref/prefs.php @@ -113,8 +113,6 @@ class Pref_Prefs extends Handler_Protected { WHERE $profile_qpart AND owner_uid = ".$_SESSION["uid"]); initialize_user_prefs($this->link, $_SESSION["uid"], $_SESSION["profile"]); - - print "PREFS_THEME_CHANGED"; } function index() { @@ -389,11 +387,7 @@ class Pref_Prefs extends Handler_Protected { parameters: dojo.objectToQuery(this.getValues()), onComplete: function(transport) { var msg = transport.responseText; - if (msg.match('PREFS_THEME_CHANGED')) { - window.location.reload(); - } else { - notify_info(msg); - } + notify_info(msg); } }); } "; @@ -496,6 +490,14 @@ class Pref_Prefs extends Handler_Protected { print ""; + } else if ($pref_name == "USER_CSS_THEME") { + + $themes = array_map("basename", glob("themes/*.css")); + + print_select($pref_name, $value, $themes, + 'dojoType="dijit.form.Select"'); + + } else if ($pref_name == "DEFAULT_ARTICLE_LIMIT") { $limits = array(15, 30, 45, 60); diff --git a/include/functions.php b/include/functions.php index 4f8eb057..a9f3b31a 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1,6 +1,6 @@ + +