diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-09-20 20:00:33 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-09-20 20:00:33 +0200 |
commit | b4887a075696b022e699da393613a8d39741f16b (patch) | |
tree | f275d95c532a835e5cb8b2953b70fa1bdd606795 /plugins/Disqus | |
parent | 96794672012bcbfa9a2e5613f8d176846ec7d1b3 (diff) |
Add FIXME for bad message implementation.
Diffstat (limited to 'plugins/Disqus')
-rw-r--r-- | plugins/Disqus/DisqusPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Disqus/DisqusPlugin.php b/plugins/Disqus/DisqusPlugin.php index c07eaaabd..681be19dc 100644 --- a/plugins/Disqus/DisqusPlugin.php +++ b/plugins/Disqus/DisqusPlugin.php @@ -68,7 +68,6 @@ if (!defined('STATUSNET')) { * * @see Event */ - class DisqusPlugin extends Plugin { function onEndShowContentBlock($action) @@ -106,6 +105,7 @@ ENDOFSCRIPT; $action->elementStart('div', $attrs); $action->elementStart('noscript'); + // @todo FIXME: No i18n yet, because of bad implementation. Should be one string. $action->raw('Please enable JavaScript to view the '); $noscriptUrl = 'http://disqus.com/?ref_noscript=' . $this->shortname; $action->element('a', array('href' => $noscriptUrl), 'comments powered by Disqus.'); |