do not return numbers < 0
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@652 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
7a8c92ff1a
commit
0c930607f0
1 changed files with 3 additions and 2 deletions
|
@ -916,9 +916,10 @@ class SemanticScuttle_Service_Bookmark extends SemanticScuttle_DbService
|
|||
message_die(GENERAL_ERROR, 'Could not get vars', '', __LINE__, __FILE__, $sql, $this->db);
|
||||
}
|
||||
|
||||
$output = $this->db->sql_fetchfield(0, 0) - 1;
|
||||
$count = $this->db->sql_fetchfield(0, 0);
|
||||
$count = ($count > 0) ? $count - 1 : (int)$count;
|
||||
$this->db->sql_freeresult($dbresult);
|
||||
return $output;
|
||||
return $count;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue