Small bug fix
[squirrelmail.git] / include / options / personal.php
index 07b16a3a1f3f3a0aa9be2f70097fa488053137ac..7d1498528475dfe9c99c1575f6d76c46fdd89e1c 100644 (file)
@@ -118,9 +118,9 @@ function load_optpage_data_personal() {
     );
 
     if ($edit_identity) {
-        $identities_link_value = '<A HREF="options_identities.php">'
+        $identities_link_value = '<a href="options_identities.php">'
                                . _("Edit Advanced Identities")
-                               . '</A> '
+                               . '</a> '
                                . _("(discards changes made on this form so far)");
         $optvals[SMOPT_GRP_CONTACT][] = array(
             'name'    => 'identities_link',
@@ -134,13 +134,13 @@ function load_optpage_data_personal() {
     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 ) {
@@ -232,4 +232,4 @@ function save_option_signature($option) {
     setSig($data_dir, $username, 'g', $option->new_value);
 }
 
-?>
+?>
\ No newline at end of file