aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-03-26 11:54:47 +0100
committerChristian Weiske <cweiske@cweiske.de>2011-03-26 11:54:47 +0100
commit78654369e918126c137b5aa4ba709a7bc0a27b43 (patch)
tree32412d16ff11cc46394a3615417b53f1f5d04c2e /www
parent0f9d06c6644f634b436549f0d5e56fc96ebd361c (diff)
downloadsemanticscuttle-78654369e918126c137b5aa4ba709a7bc0a27b43.tar.gz
semanticscuttle-78654369e918126c137b5aa4ba709a7bc0a27b43.tar.bz2
test for beginsWith parameter and a bugfix :)
Diffstat (limited to 'www')
-rw-r--r--www/ajax/getcontacttags.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/ajax/getcontacttags.php b/www/ajax/getcontacttags.php
index 1377fea..d353226 100644
--- a/www/ajax/getcontacttags.php
+++ b/www/ajax/getcontacttags.php
@@ -36,7 +36,7 @@ if (isset($_GET['beginsWith']) && strlen(trim($_GET['beginsWith']))) {
}
$listTags = SemanticScuttle_Service_Factory::get('Bookmark2Tag')->getContactTags(
- $currentUserId, $limit, $currentUserId, $beginsWith
+ $currentUserId, $limit, $currentUserId, null, $beginsWith
);
$tags = array();
foreach ($listTags as $t) {