Skip to content
Snippets Groups Projects
Commit cf7cbb7e authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #5234 fix export avec tag

parent fb6c5b75
No related branches found
No related tags found
No related merge requests found
...@@ -406,7 +406,7 @@ class ExportFunctions ...@@ -406,7 +406,7 @@ class ExportFunctions
$collection = $this->collection; $collection = $this->collection;
$query_status = "SELECT tag_label FROM tags WHERE coll_id = '".$collection."' and res_id = ##res_id## "; $query_status = "SELECT t.tag_label FROM tags t left join tag_res tr on t.tag_id = tr.tag_id WHERE t.coll_id = '".$collection."' and tr.res_id = ##res_id## ";
$db = new Database(); $db = new Database();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment