* Just cleaned some strings
authorfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 1 May 2001 21:07:11 +0000 (21:07 +0000)
committerfidian <fidian@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 1 May 2001 21:07:11 +0000 (21:07 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1329 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/prefs.php

index e96147b921f6d4c1d2e8da5c1f55501fddd047b2..76704e93e5416be5c0dbaa604bca2be60cf61332 100644 (file)
@@ -30,7 +30,7 @@
            exit;
        }
 
-       $file = fopen($filename, "r");
+       $file = fopen($filename, 'r');
 
        /** read in all the preferences **/
        $highlight_num = 0;
@@ -76,7 +76,7 @@
    function savePrefValues($data_dir, $username) {
       global $prefs_cache;
       
-      $file = fopen($data_dir . $username . '.pref', "w");
+      $file = fopen($data_dir . $username . '.pref', 'w');
       foreach ($prefs_cache as $Key => $Value) {
           if (isset($Value)) {
               fwrite($file, $Key . '=' . $Value . "\n");
    /** This checks if there is a pref file, if there isn't, it will
        create it. **/
    function checkForPrefs($data_dir, $username) {
-      $filename = "$data_dir$username.pref";
+      $filename = $data_dir . $username . '.pref';
       if (!file_exists($filename)) {
-         if (!copy("$data_dir" . "default_pref", $filename)) {
-            echo _("Error opening ") ."$filename";
+         if (!copy($data_dir . 'default_pref', $filename)) {
+            echo _("Error opening ") . $filename;
             exit;
          }
       }
 
    /** Writes the Signature **/
    function setSig($data_dir, $username, $string) {
-      $filename = "$data_dir$username.sig";
-      $file = fopen($filename, "w");
+      $file = fopen($data_dir . $username . '.sig', 'w');
       fwrite($file, $string);
       fclose($file);
    }
 
    /** Gets the signature **/
    function getSig($data_dir, $username) {
-      $filename = "$data_dir$username.sig";
-      $sig = "";
+      $filename = $data_dir . $username . '.sig';
+      $sig = '';
       if (file_exists($filename)) {
-         $file = fopen($filename, "r");
+         $file = fopen($filename, 'r');
          while (!feof($file)) {
             $sig .= fgets($file, 1024);
          }