Pascal Gloor 5年前
コミット
8b980ac853
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      cgi/autodoc.fcgi

+ 1
- 1
cgi/autodoc.fcgi ファイルの表示

@@ -163,7 +163,7 @@ sub db_get_document_object {
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_hashref()) { push @tags, $tag; }
while(my $tag = $q->fetchrow_hashref()) { push @tags, $tag; }

my %lang;


読み込み中…
キャンセル
保存