diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/isso/isso.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/isso/isso.php b/plugins/isso/isso.php index ffb7cfac..c44f3c09 100644 --- a/plugins/isso/isso.php +++ b/plugins/isso/isso.php | |||
@@ -41,9 +41,11 @@ function hook_isso_render_linklist($data, $conf) | |||
41 | // Only display comments for permalinks. | 41 | // Only display comments for permalinks. |
42 | if (count($data['links']) == 1 && empty($data['search_tags']) && empty($data['search_term'])) { | 42 | if (count($data['links']) == 1 && empty($data['search_tags']) && empty($data['search_term'])) { |
43 | $link = reset($data['links']); | 43 | $link = reset($data['links']); |
44 | $isso_html = file_get_contents(PluginManager::$PLUGINS_PATH . '/isso/isso.html'); | 44 | $issoHtml = file_get_contents(PluginManager::$PLUGINS_PATH . '/isso/isso.html'); |
45 | 45 | ||
46 | $isso = sprintf($isso_html, $issoUrl, $issoUrl, $link['linkdate'], $link['linkdate']); | 46 | // FIXME! KO thread unique si même date |
47 | $linkDate = $link['created']->format('Ymd_His'); | ||
48 | $isso = sprintf($issoHtml, $issoUrl, $issoUrl, $linkDate, $linkDate); | ||
47 | $data['plugin_end_zone'][] = $isso; | 49 | $data['plugin_end_zone'][] = $isso; |
48 | 50 | ||
49 | // Hackish way to include this CSS file only when necessary. | 51 | // Hackish way to include this CSS file only when necessary. |