$left_refresh = getPref($data_dir, $username, 'left_refresh', SMPREF_NONE );
$left_refresh = strtolower($left_refresh);
-/** Load up the Signature file **/
+/* Load up the Signature file */
$signature_abs = $signature = getSig($data_dir, $username, 'g');
/* Message Highlighting Rules */
do_hook('loading_prefs');
-?>
+?>
\ No newline at end of file
);
$css_values = array( 'none' => _("Default" ) );
-
- if (is_readable(SM_PATH . 'themes/css') && is_dir(SM_PATH . 'themes/css')) {
- $handle=opendir(SM_PATH . 'themes/css');
+ $css_dir = SM_PATH . 'themes/css';
+ if (is_readable($css_dir) && is_dir($css_dir)) {
+ $handle=opendir($css_dir);
while ($file = readdir($handle) ) {
if ( substr( $file, -4 ) == '.css' ) {
$css_values[$file] = substr( $file, 0, strlen( $file ) - 4 );
*/
function save_option_theme($option) {
global $theme;
+
/* Do checking to make sure $new_theme is in the array. */
$theme_in_array = false;
for ($i = 0; $i < count($theme); ++$i) {
}
-?>
+?>
\ No newline at end of file
save_option($option);
}
-?>
+?>
\ No newline at end of file
if ( $tzChangeAllowed ) {
$TZ_ARRAY[SMPREF_NONE] = _("Same as server");
$tzfile = SM_PATH . 'locale/timezones.cfg';
- if ((!is_readable($tzfile)) or (!$fd = fopen($tzfile,'r'))) {
- $message = _("Error opening timezone config, contact administrator.");
- }
- if (isset($message)) {
- plain_error_message($message, $color);
- exit;
- }
+ if ((!is_readable($tzfile)) or (!$fd = fopen($tzfile,'r'))) {
+ $message = _("Error opening timezone config, contact administrator.");
+ }
+ if (isset($message)) {
+ plain_error_message($message, $color);
+ exit;
+ }
while (!feof ($fd)) {
$zone = fgets($fd, 1024);
if( $zone ) {
&& $tzChangeAllowed ) {
putenv("TZ=".$timeZone);
}
-?>
+
+?>
\ No newline at end of file