From 313234eddaafabb057126b534ab4ac3bbe49a619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lucas?= Date: Tue, 3 Jun 2014 22:38:06 +0200 Subject: [PATCH] Unneeded constant --- tag.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tag.php b/tag.php index d34b991..5a90ff1 100644 --- a/tag.php +++ b/tag.php @@ -12,8 +12,6 @@ class tag extends Base { const ALL_TAGS_ID = "cops:tags"; const TAG_COLUMNS = "tags.id as id, tags.name as name, count(*) as count"; const SQL_ALL_TAGS = "select {0} from tags, books_tags_link where tags.id = tag group by tags.id, tags.name order by tags.name"; - const SQL_TAGS_FOR_SEARCH = "select {0} from tags, books_tags_link where tags.id = tag group by tags.id, tags.name order by tags.name"; - public $id; public $name;