diff options
author | knut <> | 2006-02-22 21:46:16 +0000 |
---|---|---|
committer | knut <> | 2006-02-22 21:46:16 +0000 |
commit | a30da2e71ad2ed23cbcb6011ab848ab888b2dd46 (patch) | |
tree | 1225b90b956f6489f504450bdd72ac63866224a5 /framework/I18N/core/TCache_Lite.php | |
parent | 45ddffcfc4ff5b732f9f39719430b461345c8f7a (diff) |
Did some minor optimization tweaks
Diffstat (limited to 'framework/I18N/core/TCache_Lite.php')
-rw-r--r-- | framework/I18N/core/TCache_Lite.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/I18N/core/TCache_Lite.php b/framework/I18N/core/TCache_Lite.php index 45f1dc95..078b0fe2 100644 --- a/framework/I18N/core/TCache_Lite.php +++ b/framework/I18N/core/TCache_Lite.php @@ -226,7 +226,7 @@ class TCache_Lite * @param array $options options
* @access public
*/
- function TCache_Lite($options = array(NULL))
+ function TCache_Lite($options = array(null))
{
$availableOptions = array( 'automaticSerialization',
'fileNameProtection',
@@ -310,7 +310,7 @@ class TCache_Lite * @return boolean true if no problem
* @access public
*/
- function save($data, $id = NULL, $group = 'default')
+ function save($data, $id = null, $group = 'default')
{
if ($this->_caching) {
if ($this->_automaticSerialization) {
|