Minor fix: order tags
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@251 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
c6ab56d6c7
commit
d84467ff3d
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ class Bookmark2TagService {
|
|||
return false;
|
||||
}
|
||||
|
||||
$query = 'SELECT tag FROM '. $this->getTableName() .' WHERE bId = '. intval($bookmarkid) .' AND LEFT(tag, 7) <> "system:" ORDER BY tag';
|
||||
$query = 'SELECT tag FROM '. $this->getTableName() .' WHERE bId = '. intval($bookmarkid) .' AND LEFT(tag, 7) <> "system:" ORDER BY id ASC';
|
||||
|
||||
if (!($dbresult =& $this->db->sql_query($query))) {
|
||||
message_die(GENERAL_ERROR, 'Could not get tags', '', __LINE__, __FILE__, $query, $this->db);
|
||||
|
|
Loading…
Reference in a new issue