jonathangeiger / kohana-jelly

See the link below for the most up-to-date code
https://github.com/creatoro/jelly
MIT License
146 stars 34 forks source link

Meta_Core db group #96

Closed kippel closed 14 years ago

kippel commented 14 years ago

The code now is:

/* * Gets or sets the db group * @param string $value * @return string|$this / public function db($value = NULL) { if (func_num_args() !== 0) { return $this->set('db', $db); }

            return $this->db;
    }

I think should be:

/* * Gets or sets the db group * @param string $value * @return string|$this / public function db($value = NULL) { if (func_num_args() !== 0) { return $this->set('db', $value); }

            return $this->db;
    }

to set correctly the db property

jonathangeiger commented 14 years ago

Closed by 0a9bcf2da47b7168aa94b964c82272700728fd1e. Thanks kippel!