summaryrefslogtreecommitdiffstats
path: root/system/libraries
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-01-22 17:42:13 +0100
committerDerek Jones <derek.jones@ellislab.com>2008-01-22 17:42:13 +0100
commitca0e7faf32d2ccf7d048ace616c5f60a3360d0ec (patch)
tree6acfb7df0e31cdfaf4cbc93f6d76fad12d339b47 /system/libraries
parent952402aa18234cb32765a2e1e3f984702a909c89 (diff)
prefixed all the variables in _ci_load() to avoid symbol collision in view files
Diffstat (limited to 'system/libraries')
-rw-r--r--system/libraries/Loader.php30
1 files changed, 16 insertions, 14 deletions
diff --git a/system/libraries/Loader.php b/system/libraries/Loader.php
index b760d67a1..721db3918 100644
--- a/system/libraries/Loader.php
+++ b/system/libraries/Loader.php
@@ -603,35 +603,37 @@ class CI_Loader {
* Loader
*
* This function is used to load views and files.
+ * Variables are prefixed with _ci_ to avoid symbol collision with
+ * variables made available to view files
*
* @access private
* @param array
* @return void
*/
- function _ci_load($data)
+ function _ci_load($_ci_data)
{
// Set the default data variables
- foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $val)
+ foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val)
{
- $$val = ( ! isset($data[$val])) ? FALSE : $data[$val];
+ $$_ci_val = ( ! isset($_ci_data[$_ci_val])) ? FALSE : $_ci_data[$_ci_val];
}
// Set the path to the requested file
if ($_ci_path == '')
{
- $ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
- $file = ($ext == '') ? $_ci_view.EXT : $_ci_view;
- $_ci_path = $this->_ci_view_path.$file;
+ $_ci_ext = pathinfo($_ci_view, PATHINFO_EXTENSION);
+ $_ci_file = ($_ci_ext == '') ? $_ci_view.EXT : $_ci_view;
+ $_ci_path = $this->_ci_view_path.$_ci_file;
}
else
{
- $x = explode('/', $_ci_path);
- $file = end($x);
+ $_ci_x = explode('/', $_ci_path);
+ $_ci_file = end($_ci_x);
}
if ( ! file_exists($_ci_path))
{
- show_error('Unable to load the requested file: '.$file);
+ show_error('Unable to load the requested file: '.$_ci_file);
}
// This allows anything loaded using $this->load (views, files, etc.)
@@ -640,16 +642,16 @@ class CI_Loader {
if ($this->_ci_is_instance())
{
- $CI =& get_instance();
- foreach (get_object_vars($CI) as $key => $var)
+ $_ci_CI =& get_instance();
+ foreach (get_object_vars($_ci_CI) as $_ci_key => $_ci_var)
{
- if ( ! isset($this->$key))
+ if ( ! isset($this->$_ci_key))
{
- $this->$key =& $CI->$key;
+ $this->$_ci_key =& $_ci_CI->$_ci_key;
}
}
}
-
+
/*
* Extract and cache variables
*