Explorar el Código

return tag color

master
Pascal Gloor hace 5 años
padre
commit
b9cb492953
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      cgi/autodoc.fcgi

+ 2
- 2
cgi/autodoc.fcgi Ver fichero

@@ -160,10 +160,10 @@ sub db_get_document_object {
}

$q = sqlquery($dbh, "
SELECT tags.tag AS tag
SELECT tags.tag AS name, tags.color AS color
FROM documents_tags JOIN tags ON documents_tags.tagId = tags.id
WHERE documentId = ? ORDER BY tag", $id);
while(my ($tag) = $q->fetchrow_array()) { push @tags, $tag; }
while(my ($tag) = $q->fetchrow_hashref()) { push @tags, $tag; }

my %lang;


Cargando…
Cancelar
Guardar