added step for copying config_default.php to config.php
[squirrelmail.git] / functions / prefs.php
index 6962e6a585220d98a7cae5b262ae842aa76a3106..097c2dac2d0bc53a9ab4a92a8a73c129962096d7 100644 (file)
@@ -9,7 +9,7 @@
    function getPref($data_dir, $username, $string) {
       $filename = "$data_dir$username.pref";
       if (!file_exists($filename)) {
-         echo _("Preference file ") "\"$filename\"" _(" not found.  Exiting abnormally");
+         echo _("Preference file ") . "\"$filename\"" . _(" not found.  Exiting abnormally");
          exit;
       }
 
@@ -32,7 +32,7 @@
       $filename = "$data_dir$username.pref";
       $found = false;
       if (!file_exists($filename)) {
-         echo _("Preference file, ") "\"$filename\"". _(", does not exist.  Log out, and log back in to create a default preference file. ") ."<BR>";
+         echo _("Preference file, ") . "\"$filename\"" . _(", does not exist.  Log out, and log back in to create a default preference file. ") ."<BR>";
          exit;
       }
       $file = fopen($filename, "r");