aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/admin.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-11-10 13:00:21 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-11-10 13:00:21 +0000
commit267281e13e8e8baedec7ef06a88fd4024a54256d (patch)
tree86fb0e3abd44fc0d6c95d05593e965ae464d225d /engine/lib/admin.php
parent8813c21c7a7bf08ce8d80d8b6a8974ba9a030d24 (diff)
downloadelgg-267281e13e8e8baedec7ef06a88fd4024a54256d.tar.gz
elgg-267281e13e8e8baedec7ef06a88fd4024a54256d.tar.bz2
elgg_extend_view() replaces extend_view()
git-svn-id: http://code.elgg.org/elgg/trunk@3661 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/admin.php')
-rw-r--r--engine/lib/admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/admin.php b/engine/lib/admin.php
index c680f0a7f..fc3ffd64c 100644
--- a/engine/lib/admin.php
+++ b/engine/lib/admin.php
@@ -22,14 +22,14 @@
* nb. some pages already exist that you can extend), extend the main view to point to it,
* and add controls to your new view.
*
- * At the moment this is essentially a wrapper around extend_view.
+ * At the moment this is essentially a wrapper around elgg_extend_view().
*
* @param string $new_admin_view The view associated with the control you're adding
* @param string $view The view to extend, by default this is 'admin/main'.
* @param int $priority Optional priority to govern the appearance in the list.
*/
function extend_elgg_admin_page( $new_admin_view, $view = 'admin/main', $priority = 500) {
- return extend_view($view, $new_admin_view, $priority);
+ return elgg_extend_view($view, $new_admin_view, $priority);
}
/**