Commit 292aed39 by pupi1985

Removed string duplication in the attribution comment.

parent 095f2a4c
...@@ -201,16 +201,17 @@ ...@@ -201,16 +201,17 @@
function html() function html()
{ {
$attribution = '<!-- Powered by Question2Answer - http://www.question2answer.org/ -->';
$this->output( $this->output(
'<html>', '<html>',
'<!-- Powered by Question2Answer - http://www.question2answer.org/ -->' $attribution
); );
$this->head(); $this->head();
$this->body(); $this->body();
$this->output( $this->output(
'<!-- Powered by Question2Answer - http://www.question2answer.org/ -->', $attribution,
'</html>' '</html>'
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment