Changing Object::set() to non-conflicting _set()

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4486 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2007-02-09 05:08:15 +00:00
parent 1c07701223
commit ce71e04618

View file

@ -196,7 +196,7 @@ class Object{
* properties and corresponding values.
* @return void
*/
function set($properties = array()) {
function _set($properties = array()) {
if (is_array($properties) && !empty($properties)) {
$vars = get_object_vars($this);
foreach ($properties as $key => $val) {