X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Ffile_prefs.php;h=c15dcd37b841fa9521ce728b85ce774792e8906c;hb=1cbd87548bd63a925cb3d4ce025ae40b616b7c64;hp=c9590a72eac01594dbf6fad10bb09d404205ee91;hpb=4b4abf93a9624311afef0c385023724ee46a2b60;p=squirrelmail.git diff --git a/functions/file_prefs.php b/functions/file_prefs.php index c9590a72..c15dcd37 100644 --- a/functions/file_prefs.php +++ b/functions/file_prefs.php @@ -5,7 +5,7 @@ * * This contains functions for manipulating user preferences in files * - * @copyright © 1999-2005 The SquirrelMail Project Team + * @copyright © 1999-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -13,11 +13,6 @@ * @since 1.2.5 */ -/** @ignore */ -if (! defined('SM_PATH')) define('SM_PATH','../'); - -/** include this for error messages */ -include_once(SM_PATH . 'functions/display_messages.php'); /** * Check the preferences into the session cache. @@ -31,6 +26,8 @@ function cachePrefValues($data_dir, $username) { sqgetGlobalVar('prefs_are_cached', $prefs_are_cached, SQ_SESSION ); if ( isset($prefs_are_cached) && $prefs_are_cached) { sqgetGlobalVar('prefs_cache', $prefs_cache, SQ_SESSION ); +// sm_print_r($prefs_cache); +// exit; return; } @@ -103,13 +100,13 @@ function cachePrefValues($data_dir, $username) { function getPref($data_dir, $username, $string, $default = '') { global $prefs_cache; - $result = do_hook_function('get_pref_override',array($username,$string)); + $result = do_hook('get_pref_override', $temp=array(&$username, &$string)); if (!$result) { cachePrefValues($data_dir, $username); if (isset($prefs_cache[$string])) { $result = $prefs_cache[$string]; } else { - $result = do_hook_function('get_pref', array($username,$string)); + $result = do_hook('get_pref', $temp=array(&$username, &$string)); if (!$result) { $result = $default; } @@ -312,4 +309,3 @@ function getSig($data_dir, $username, $number) { } // vim: et ts=4 -?> \ No newline at end of file