mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-12 02:48:48 -04:00
Fixed error Only variable references should be returned by reference
Severity: Notice Message: Only variable references should be returned by reference Filename: core/Common.php Line Number: 257
This commit is contained in:
@@ -253,8 +253,8 @@ if ( ! function_exists('get_config'))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $_config[0] =& $config;
|
||||
$_config[0] =& $config;
|
||||
return $_config[0];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -561,4 +561,4 @@ if ( ! function_exists('html_escape'))
|
||||
}
|
||||
|
||||
/* End of file Common.php */
|
||||
/* Location: ./system/core/Common.php */
|
||||
/* Location: ./system/core/Common.php */
|
||||
|
||||
Reference in New Issue
Block a user