diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-09 22:04:46 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-09 22:04:46 +0000 |
commit | 6b3ee5365b10afc37677781fc5f07539f1d8636f (patch) | |
tree | a9280742d01bda2b5b5b9ee7540f1c8a7fc31947 /mod/sitepages | |
parent | 6f41511034886224e0888d2f886c7d7ccc48636d (diff) | |
download | elgg-6b3ee5365b10afc37677781fc5f07539f1d8636f.tar.gz elgg-6b3ee5365b10afc37677781fc5f07539f1d8636f.tar.bz2 |
Refs #2874. Finished removing calls to deprecated plugin mgmt functions in core and core plugins.
git-svn-id: http://code.elgg.org/elgg/trunk@8090 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/sitepages')
-rw-r--r-- | mod/sitepages/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/sitepages/start.php b/mod/sitepages/start.php index 4a2b15dcd..93b6c196e 100644 --- a/mod/sitepages/start.php +++ b/mod/sitepages/start.php @@ -40,7 +40,7 @@ function sitepages_init() { elgg_extend_view('html_head/extend', 'sitepages/metatags'); // Replace the default index page if user has requested and the site is not running walled garden - if (get_plugin_setting('ownfrontpage', 'sitepages') == 'yes') { + if (elgg_get_plugin_setting('ownfrontpage', 'sitepages') == 'yes') { elgg_register_plugin_hook_handler('index', 'system', 'sitepages_custom_index'); } |