summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_search_form.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-04-05 15:13:01 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-04-05 15:54:21 +0200
commitd16f7cf712f0f2f14343ff55a625b12603f542a4 (patch)
treed03b4552c1b5beaadee6a921db8888e048ceedec /web/template/pkg_search_form.php
parentf4613442114b36d32e903b5b0608b73e32bdbc3f (diff)
downloadaurweb-d16f7cf712f0f2f14343ff55a625b12603f542a4.tar.xz
Use snake case for all package functions
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/pkg_search_form.php')
-rw-r--r--web/template/pkg_search_form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index ececf06..d004acc 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -47,7 +47,7 @@ $per_page = array(50, 100, 250);
<label for="id_category"><?= __("Category"); ?></label>
<select name='C' id="id_category">
<option value='0'><?= __("Any"); ?></option>
- <?php foreach (pkgCategories() as $id => $cat): ?>
+ <?php foreach (pkg_categories() as $id => $cat): ?>
<?php if (isset($_REQUEST['C']) && $_REQUEST['C'] == $id): ?>
<option value="<?= $id ?>" selected="selected"><?= $cat; ?></option>
<?php else: ?>