Backlink now set in copyright_backlink template, revision (Rxxx) added to copyright...
authorRoland Häder <roland@mxchange.org>
Wed, 17 Sep 2008 19:35:50 +0000 (19:35 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 17 Sep 2008 19:35:50 +0000 (19:35 +0000)
inc/databases.php
inc/footer.php
templates/de/html/copyright.tpl
templates/de/html/copyright_backlink.tpl

index 99964d830bfe042835361b14522fcefb965b5a91..4c69af42b8711be05bf8bcb86adab74937c53165 100644 (file)
@@ -113,7 +113,7 @@ define('USAGE_BASE', "usage");
 define('SERVER_URL', "http://www.mxchange.org");
 
 // This current patch level
-define('CURR_SVN_REVISION', "353");
+define('CURR_SVN_REVISION', "354");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index ed888b44692142fedee53838353ebb1f3d0c7529..6d4b63cdd2b18c47b4b7d9d6c4cb15cc64abec75 100644 (file)
@@ -52,7 +52,14 @@ if (($footer != "1") && ($footer != "2") && ($CSS != "1")) {
 
        // Shall we display the copyright notice?
        if ((empty($frame)) && (empty($_GET['frame'])) && (basename($_SERVER['PHP_SELF']) != "mailid_top.php") && (isBooleanConstantAndTrue('WRITE_FOOTER')) && ($header == "2")) {
-               LOAD_TEMPLATE("copyright");
+               // Backlink enabled?
+               if (isBooleanConstantAndTrue('ENABLE_BACKLINK')) {
+                       // Copyright with backlink, thanks! :-)
+                       LOAD_TEMPLATE("copyright_backlink");
+               } else {
+                       // No backlink in Copyright note
+                       LOAD_TEMPLATE("copyright");
+               }
        } // END - if
 
        // Shall we display the parsing time and number of queries?
index 7d443f2bd8c25e58651a37bc63df156df334448e..7efa31d3a4e662b7313b9510b5edc0b08129cc26 100644 (file)
@@ -1,7 +1,7 @@
 <TABLE border="0" cellspacing="0" cellpadding="0" align="center">
        <TR>
                <TD align="center" class="footer_lines">{!TITLE!}
-               v{!FULL_VERSION!}<br />
+               v{!FULL_VERSION!} R{!CURR_SVN_REVISION!}<br />
                Copyright &copy; 2003 - 2008 by Roland H&auml;der</TD>
                <TD align="center" width="50%" class="footer_lines">This
                website&#39;s engine is free software which is released under the GNU
index 46789bacd15010cd6d94825d4ce220bca81a6147..0386c1a486bc8bd80eb73f8bfcd858a263d02594 100644 (file)
@@ -1,10 +1,13 @@
 <TABLE border="0" cellspacing="0" cellpadding="0" align="center">
        <TR>
-               <TD align="center" class="footer_lines">{!TITLE!}
-               v{!FULL_VERSION!}<br />
-               {!COPY!}</TD>
-               <TD align="center" width="50%" class="footer_lines">This
-               website&#39;s engine is free software which is released under the GNU
-               GPL either version 2 of the License.</TD>
+               <TD align="center" class="footer_lines">
+                       [<a href="{!SERVER_URL!}/" title="{!TITLE!}" target="_blank" rel="external">{!TITLE!}</a>]
+                       v{!FULL_VERSION!} R{!CURR_SVN_REVISION!}<br />
+                       {!COPY!}
+               </TD>
+               <TD align="center" width="50%" class="footer_lines">
+                       This website&#39;s engine is free software which is released under
+                       the GNU GPL either version 2 of the License.
+               </TD>
        </TR>
 </TABLE>