From: <var...@us...> - 2014-09-26 14:39:43
|
Revision: 9125 http://sourceforge.net/p/phpwiki/code/9125 Author: vargenau Date: 2014-09-26 14:39:38 +0000 (Fri, 26 Sep 2014) Log Message: ----------- Add PHPWIKI_VERSION in meta name generator Modified Paths: -------------- trunk/themes/Crao/templates/head.tmpl trunk/themes/Sidebar/templates/htmldump.tmpl trunk/themes/default/templates/dialog.tmpl trunk/themes/default/templates/head.tmpl trunk/themes/default/templates/htmldump.tmpl trunk/themes/default/templates/redirect.tmpl trunk/themes/wikilens/templates/head.tmpl Modified: trunk/themes/Crao/templates/head.tmpl =================================================================== --- trunk/themes/Crao/templates/head.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/Crao/templates/head.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -8,7 +8,7 @@ <?php if (!empty($PAGE_KEYWORDS)) { ?> <meta name="keywords" content="<?php echo $PAGE_KEYWORDS?>" /> <?php } ?> -<meta name="generator" content="PhpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <base href="<?php echo PHPWIKI_BASE_URL?>" /> <link rel="shortcut icon" href="<?php echo $WikiTheme->getImageURL('favicon.ico')?>" /> <link rel="stylesheet" type="text/css" href="<?php echo DATA_PATH ?>/highlight.js/styles/github.css"/> Modified: trunk/themes/Sidebar/templates/htmldump.tmpl =================================================================== --- trunk/themes/Sidebar/templates/htmldump.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/Sidebar/templates/htmldump.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -20,7 +20,7 @@ <?php if (!empty($PAGE_KEYWORDS)) { ?> <meta name="keywords" content="<?php echo $PAGE_KEYWORDS?>" /> <?php } ?> -<meta name="generator" content="PhpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <?php if (!empty($relative_base)) { ?> <base href="<?php echo $relative_base?>" /> Modified: trunk/themes/default/templates/dialog.tmpl =================================================================== --- trunk/themes/default/templates/dialog.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/default/templates/dialog.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="robots" content="noindex, nofollow" /> -<meta name="generator" content="phpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <base href="<?php echo PHPWIKI_BASE_URL?>" /> <?php echo $WikiTheme->getCSS() ?> <title><?php echo WIKI_NAME . ' - ' . _("Dialog")?></title> Modified: trunk/themes/default/templates/head.tmpl =================================================================== --- trunk/themes/default/templates/head.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/default/templates/head.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -12,7 +12,7 @@ <?php if (!empty($PAGE_KEYWORDS)) { ?> <meta name="keywords" content="<?php echo $PAGE_KEYWORDS?>" /> <?php } ?> -<meta name="generator" content="PhpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <base href="<?php echo PHPWIKI_BASE_URL?>" /> <link rel="shortcut icon" href="<?php echo $WikiTheme->getImageURL('favicon.ico')?>" /> <link rel="stylesheet" type="text/css" href="<?php echo DATA_PATH ?>/highlight.js/styles/github.css"/> Modified: trunk/themes/default/templates/htmldump.tmpl =================================================================== --- trunk/themes/default/templates/htmldump.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/default/templates/htmldump.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -20,7 +20,7 @@ <?php if (!empty($PAGE_KEYWORDS)) { ?> <meta name="keywords" content="<?php echo $PAGE_KEYWORDS?>" /> <?php } ?> -<meta name="generator" content="PhpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <?php if (!empty($relative_base)) { ?> <base href="<?php echo $relative_base?>" /> Modified: trunk/themes/default/templates/redirect.tmpl =================================================================== --- trunk/themes/default/templates/redirect.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/default/templates/redirect.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -8,7 +8,7 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="robots" content="noindex, nofollow" /> -<meta name="generator" content="PhpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <base href="<?php echo PHPWIKI_BASE_URL?>" /> <?php echo $WikiTheme->getCSS() ?> <title><?php echo WIKI_NAME . ' - ' . _("Redirect")?></title> Modified: trunk/themes/wikilens/templates/head.tmpl =================================================================== --- trunk/themes/wikilens/templates/head.tmpl 2014-09-26 14:22:08 UTC (rev 9124) +++ trunk/themes/wikilens/templates/head.tmpl 2014-09-26 14:39:38 UTC (rev 9125) @@ -8,7 +8,7 @@ <?php if (!empty($PAGE_KEYWORDS)) { ?> <meta name="keywords" content="<?php echo $PAGE_KEYWORDS?>" /> <?php } ?> -<meta name="generator" content="PhpWiki" /> +<meta name="generator" content="PhpWiki <?php echo PHPWIKI_VERSION?>" /> <base href="<?php echo PHPWIKI_BASE_URL?>" /> <link rel="shortcut icon" href="<?php echo $WikiTheme->getImageURL('favicon.ico')?>" /> <link rel="stylesheet" type="text/css" href="<?php echo DATA_PATH ?>/highlight.js/styles/github.css"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |