aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/actions.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-26 23:38:09 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-26 23:38:09 +0000
commitb5a87393452a7dc77cbaa52e3209bc25e0c22e79 (patch)
tree46825f758bbd72663bc77c3c86b8d805c17ed20f /engine/lib/actions.php
parentaeee52fb2992b060b80ec58a4da5216bf426993e (diff)
downloadelgg-b5a87393452a7dc77cbaa52e3209bc25e0c22e79.tar.gz
elgg-b5a87393452a7dc77cbaa52e3209bc25e0c22e79.tar.bz2
Fixes #3249 fixed name of actions exists function
git-svn-id: http://code.elgg.org/elgg/trunk@8862 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/actions.php')
-rw-r--r--engine/lib/actions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/actions.php b/engine/lib/actions.php
index 1a26018ab..c92ed4cb7 100644
--- a/engine/lib/actions.php
+++ b/engine/lib/actions.php
@@ -354,7 +354,7 @@ function get_site_secret() {
* @return bool
* @since 1.8.0
*/
-function elgg_action_exist($action) {
+function elgg_action_exists($action) {
global $CONFIG;
return (isset($CONFIG->actions[$action]) && file_exists($CONFIG->actions[$action]['file']));