summaryrefslogtreecommitdiff
path: root/core/helpers/module.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-28 18:39:18 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-28 18:39:18 +0000
commit89c4dadec2a7c9cfd55affa118ed681a9654a58c (patch)
treeadb32dee5860eb530c01edf96e8c8d639d2efc80 /core/helpers/module.php
parenta7f6efa2f2bed248149fb2f5d3833301b92a2ecf (diff)
Rename module::get_list() to module::installed()
Diffstat (limited to 'core/helpers/module.php')
-rw-r--r--core/helpers/module.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/module.php b/core/helpers/module.php
index 7d6d7f64..fc76c033 100644
--- a/core/helpers/module.php
+++ b/core/helpers/module.php
@@ -51,7 +51,7 @@ class module_Core {
return ORM::factory("module")->where("name", $module_name)->find()->loaded;
}
- public static function get_list() {
+ public static function installed() {
return ORM::factory("module")->find_all();
}
}