This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "quickfw".
The branch, master has been updated
via eb086e4de63d19515064221da5a6bf55cef05d51 (commit)
from d57fc49c5b8d21fbcf1ee274191915ffafae5c92 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit eb086e4de63d19515064221da5a6bf55cef05d51
Author: Ivan Borzenkov <iva...@li...>
Date: Tue Jun 7 17:42:51 2011 +0400
Небольшой фикс конфига
diff --git a/QFW/QuickFW/Config.php b/QFW/QuickFW/Config.php
index cf6ad72..cd93802 100644
--- a/QFW/QuickFW/Config.php
+++ b/QFW/QuickFW/Config.php
@@ -88,7 +88,7 @@ class QuickFW_Config implements ArrayAccess
return $this->data[$offset];
}
public function offsetExists($offset) { return isset($this->data[$offset]); }
- public function offsetUnset($offset) { unset($this->data); }
+ public function offsetUnset($offset) { unset($this->data[$offset]); }
/**
* Пробуем загрузить файл из текущей директории
diff --git a/lib/RecursiveArrayAccess.php b/lib/RecursiveArrayAccess.php
index 0f39e41..48f4b17 100644
--- a/lib/RecursiveArrayAccess.php
+++ b/lib/RecursiveArrayAccess.php
@@ -32,7 +32,7 @@ class RecursiveArrayAccess implements ArrayAccess
//public function offsetGet($offset) { return isset($this->data[$offset]) ? $this->data[$offset] : null; }
public function offsetGet($offset) { return $this->data[$offset]; }
public function offsetExists($offset) { return isset($this->data[$offset]); }
- public function offsetUnset($offset) { unset($this->data); }
+ public function offsetUnset($offset) { unset($this->data[$offset]); }
//as prop
public function __get($offset) { return $this->offsetGet($offset); }
-----------------------------------------------------------------------
Summary of changes:
QFW/QuickFW/Config.php | 2 +-
lib/RecursiveArrayAccess.php | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
quickfw
|