summaryrefslogtreecommitdiff
path: root/modules/gallery/libraries/MY_View.php
diff options
context:
space:
mode:
authorcolings <colings@example.com>2011-01-09 11:43:45 -0600
committercolings <colings@example.com>2011-01-09 11:43:45 -0600
commit02a349f68ac480d5b1a630e14b4f2e3558328673 (patch)
tree25bf25960b6811d8dbcbed6f6c9d63de7c03bd4e /modules/gallery/libraries/MY_View.php
parentc2a1ea64eda2bf3e22ecaf4df4714c091bc5d7c4 (diff)
parentde5b06ae7442db2c7a8999c0c806997248ddb151 (diff)
Merge remote branch 'upstream/master'
Diffstat (limited to 'modules/gallery/libraries/MY_View.php')
-rw-r--r--modules/gallery/libraries/MY_View.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/gallery/libraries/MY_View.php b/modules/gallery/libraries/MY_View.php
index ded77792..2230203a 100644
--- a/modules/gallery/libraries/MY_View.php
+++ b/modules/gallery/libraries/MY_View.php
@@ -23,8 +23,14 @@ class View extends View_Core {
/**
* Reimplement Kohana 2.3's View::set_global() functionality.
*/
- public function set_global($key, $value) {
- View::$global_data[$key] = $value;
+ public function set_global($key, $value = NULL) {
+ if (is_array($key)) {
+ foreach ($key as $key2 => $value) {
+ View::$global_data[$key2] = $value;
+ }
+ } else {
+ View::$global_data[$key] = $value;
+ }
}
public function is_set($key=null) {