diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-01-23 22:31:51 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-01-23 22:31:51 +0100 |
commit | fc6c7017746b81b267d8020968ab117e9383a23c (patch) | |
tree | ee98840a33bebe164f5fd954d0806abbf7723ff1 | |
parent | 57bd9780c8bb58e150853c91c97001c299932807 (diff) | |
download | Shaarli-fc6c7017746b81b267d8020968ab117e9383a23c.tar.gz Shaarli-fc6c7017746b81b267d8020968ab117e9383a23c.tar.zst Shaarli-fc6c7017746b81b267d8020968ab117e9383a23c.zip |
Fix deprecated use of implode
-rw-r--r-- | tpl/default/thumbnails.html | 2 | ||||
-rw-r--r-- | tpl/vintage/thumbnails.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tpl/default/thumbnails.html b/tpl/default/thumbnails.html index f1939798..5f9bef08 100644 --- a/tpl/default/thumbnails.html +++ b/tpl/default/thumbnails.html | |||
@@ -38,7 +38,7 @@ | |||
38 | </div> | 38 | </div> |
39 | </div> | 39 | </div> |
40 | 40 | ||
41 | <input type="hidden" name="ids" value="{function="implode($ids, ',')"}" /> | 41 | <input type="hidden" name="ids" value="{function="implode(',', $ids)"}" /> |
42 | </div> | 42 | </div> |
43 | </div> | 43 | </div> |
44 | 44 | ||
diff --git a/tpl/vintage/thumbnails.html b/tpl/vintage/thumbnails.html index 79aebf8d..5cad845b 100644 --- a/tpl/vintage/thumbnails.html +++ b/tpl/vintage/thumbnails.html | |||
@@ -20,7 +20,7 @@ | |||
20 | </div> | 20 | </div> |
21 | </div> | 21 | </div> |
22 | 22 | ||
23 | <input type="hidden" name="ids" value="{function="implode($ids, ',')"}" /> | 23 | <input type="hidden" name="ids" value="{function="implode(',', $ids)"}" /> |
24 | 24 | ||
25 | {include="page.footer"} | 25 | {include="page.footer"} |
26 | <script src="js/thumbnails_update.min.js?v={$version_hash}"></script> | 26 | <script src="js/thumbnails_update.min.js?v={$version_hash}"></script> |