Change the name of the implmentation of module parameters to module vars

This commit is contained in:
Tim Almdal
2008-12-11 16:06:22 +00:00
parent fa86be7df4
commit e84a0ebe46
5 changed files with 23 additions and 20 deletions

View File

@@ -18,5 +18,5 @@
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class Module_Model extends ORM {
protected $has_many = array("parameters");
protected $has_many = array("vars");
}