From 59ff6cd52bfaa64806e554d2e1743dec62dad73a Mon Sep 17 00:00:00 2001 From: Gunnar Wrobel Date: Mon, 29 Nov 2010 17:00:16 +0100 Subject: [PATCH] Fix the variable name in the error message. --- framework/Prefs/lib/Horde/Prefs/Storage/File.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } } -- 2.11.0