Author: Tobias Schlitt
Date: 2006-01-13 10:30:30 +0100 (Fri, 13 Jan 2006)
New Revision: 1813

Log:
- Unify messaged.

Modified:
   packages/Cache/trunk/src/storage.php

Modified: packages/Cache/trunk/src/storage.php
===================================================================
--- packages/Cache/trunk/src/storage.php        2006-01-13 09:24:34 UTC (rev 
1812)
+++ packages/Cache/trunk/src/storage.php        2006-01-13 09:30:30 UTC (rev 
1813)
@@ -216,13 +216,13 @@
                     case 'ttl':
                         if ( !is_int( $val ) || $val < 0 )
                         {
-                            throw new ezcBaseSettingValueException( $name, 
$val, 'Integer larger or equal to 0.');
+                            throw new ezcBaseSettingValueException( $name, 
$val, 'int >= 0.');
                         }
                         break;
                     case 'extension':
                         if ( !is_string( $val ) )
                         {
-                            throw new ezcBaseSettingValueException( $name, 
$val, 'String.');
+                            throw new ezcBaseSettingValueException( $name, 
$val, 'string');
                         }
                         break;
                 }

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to