From: Gunnar Wrobel
Date: Mon, 29 Nov 2010 16:00:16 +0000 (+0100) Subject: Fix the variable name in the error message. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=59ff6cd52bfaa64806e554d2e1743dec62dad73a;p=horde.git Fix the variable name in the error message. --- diff --git a/framework/Prefs/lib/Horde/Prefs/Storage/File.php b/framework/Prefs/lib/Horde/Prefs/Storage/File.php index 5c61c65a0..b569280b1 100644 --- a/framework/Prefs/lib/Horde/Prefs/Storage/File.php +++ b/framework/Prefs/lib/Horde/Prefs/Storage/File.php @@ -137,7 +137,7 @@ class Horde_Prefs_Storage_File extends Horde_Prefs_Storage_Base if ((file_put_contents($tmp_file, serialize($this->_fileCache)) === false) || (@rename($tmp_file, $this->_fullpath) === false)) { - throw new Horde_Prefs_Exception(sprintf('Write of preferences to %s failed', $this->_filename)); + throw new Horde_Prefs_Exception(sprintf('Write of preferences to %s failed', $this->_fullpath)); } }