diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-01-16 17:27:08 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-01-16 17:53:30 +0100 |
commit | 2a703b40550129c668e7781aaa1a25612fd42902 (patch) | |
tree | 57ea45fd5bcedd595006badb705c15e09f0c1932 /phpBB/includes | |
parent | 1359cf654714107f752d14a358d76ee310a9ff57 (diff) | |
download | forums-2a703b40550129c668e7781aaa1a25612fd42902.tar forums-2a703b40550129c668e7781aaa1a25612fd42902.tar.gz forums-2a703b40550129c668e7781aaa1a25612fd42902.tar.bz2 forums-2a703b40550129c668e7781aaa1a25612fd42902.tar.xz forums-2a703b40550129c668e7781aaa1a25612fd42902.zip |
[ticket/9859] Remove years in credit line from some more files.
Standard HTML output now includes:
Powered by <a href="http://www.phpbb.com/">phpBB</a> © phpBB Group
Print output now includes:
Powered by phpBB © phpBB Group<br />http://www.phpbb.com/
This also fixes an inconsistency where "phpBB Group" was linked instead of
"phpBB".
PHPBB3-9859
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/db/dbal.php | 2 | ||||
-rw-r--r-- | phpBB/includes/functions.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index eeddf1f41b..5d8d5fbd47 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -767,7 +767,7 @@ class dbal </div> </div> <div id="page-footer"> - Powered by phpBB © 2000, 2002, 2005, 2007 <a href="http://www.phpbb.com/">phpBB Group</a> + Powered by <a href="http://www.phpbb.com/">phpBB</a> © phpBB Group </div> </div> </body> diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 69be1627cf..5def593bd6 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3834,7 +3834,7 @@ function msg_handler($errno, $msg_text, $errfile, $errline) echo ' </div>'; echo ' </div>'; echo ' <div id="page-footer">'; - echo ' Powered by phpBB © 2000, 2002, 2005, 2007 <a href="http://www.phpbb.com/">phpBB Group</a>'; + echo ' Powered by <a href="http://www.phpbb.com/">phpBB</a> © phpBB Group'; echo ' </div>'; echo '</div>'; echo '</body>'; |