From 63123e7c55270c877981b5bb6a76607bad7a16fc Mon Sep 17 00:00:00 2001 From: fidian Date: Tue, 1 May 2001 21:07:11 +0000 Subject: [PATCH] * Just cleaned some strings git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1329 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/prefs.php | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/functions/prefs.php b/functions/prefs.php index e96147b9..76704e93 100644 --- a/functions/prefs.php +++ b/functions/prefs.php @@ -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"); @@ -111,10 +111,10 @@ /** 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; } } @@ -123,8 +123,7 @@ /** 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); } @@ -133,10 +132,10 @@ /** 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); } -- 2.25.1