diff options
author | Michael Hamann <michael@content-space.de> | 2013-02-20 11:56:18 -0800 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2013-02-20 11:56:18 -0800 |
commit | 3cd9b97d290f6f70214d6bfc7f5e8964ff138ff1 (patch) | |
tree | 034a7398e31a5e7ce201ad28ac62936cd1773d08 | |
parent | 00d58927261c5bed6f093ca4aa2064a18139a228 (diff) | |
parent | 64276bbca5e40e5c6e93b98e76bb84b33db4643b (diff) | |
download | rpg-3cd9b97d290f6f70214d6bfc7f5e8964ff138ff1.tar.gz rpg-3cd9b97d290f6f70214d6bfc7f5e8964ff138ff1.tar.bz2 |
Merge pull request #188 from arbrk1/patch-1
Change function call from actionOk into actionOK (correct name)
-rw-r--r-- | inc/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php index a5bcabf1e..e52158a53 100644 --- a/inc/template.php +++ b/inc/template.php @@ -764,7 +764,7 @@ function tpl_searchform($ajax = true, $autocomplete = true) { global $QUERY; // don't print the search form if search action has been disabled - if(!actionOk('search')) return false; + if(!actionOK('search')) return false; print '<form action="'.wl().'" accept-charset="utf-8" class="search" id="dw__search" method="get"><div class="no">'; print '<input type="hidden" name="do" value="search" />'; |