Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1263)
+++ branches/2.8.x/CHANGELOG	(revision 1264)
@@ -11,6 +11,8 @@
 ! = Update/Change
  
 ------------------------------------- 2.8.1 -------------------------------------
+22-Jan-2010 Dietmar Woellbrink (Luisehahne)
+!	Ticket #916 Update backend theme footer
 21-Jan-2010 Dietmar Woellbrink (Luisehahne)
 !	updated YUI 2.4.1 to 2.8.0r4
 21-Jan-2010 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1263)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1264)
@@ -55,6 +55,6 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.1');
-if(!defined('REVISION')) define('REVISION', '1263');
+if(!defined('REVISION')) define('REVISION', '1264');
 
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/jquery/jquery-plugins.js
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/jquery/jquery-plugins.js	(revision 1263)
+++ branches/2.8.x/wb/templates/classic_theme/jquery/jquery-plugins.js	(revision 1264)
@@ -8,21 +8,16 @@
         if($(".jsadmin").length) {
             $.insert(WB_URL+"/modules/jsadmin/backend.css");
           }
-/*
-        if($("a[rel^='lightbox']").length) {
-            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2.css");
-            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2-min.js");
-          }
-        if($("textarea.markitup").length) {
-            $.insert(WB_URL+'/modules/markitup/latest/skins/markitup/style.css');
-            $.insert(WB_URL+'/modules/markitup/latest/sets/default/style.css');
-            $.insert(WB_URL+'/modules/markitup/latest/jquery.markitup.pack.js');
-            $.insert(WB_URL+'/modules/markitup/latest/sets/default/set.js');
+	//Add external link class to external links -
+	$('a[href^="http://"]').filter(function() {
+		//Compare the anchor tag's host name with location's host name
+	    return this.hostname && this.hostname !== location.hostname;
+	  }).addClass("external").attr("target", "_blank");
 
-        	// Add markItUp! to your textarea in one line
-        	// $('textarea.markitup').markItUp( { Settings }, { OptionalExtraSettings } );
-        	$('textarea.markitup').markItUp(mySettings);
+	/* Add internal link class to external links -   */
+	$('a[href^="http://"]').filter(function() {
+		//Compare the anchor tag's host name with location's host name
+	    return this.hostname && this.hostname == location.hostname;
+	  }).addClass("internal");
 
-         }
- */
 });
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/footer.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/footer.htt	(revision 1263)
+++ branches/2.8.x/wb/templates/classic_theme/templates/footer.htt	(revision 1264)
@@ -5,11 +5,11 @@
 
 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
 <tr>
-	<td align="center" style="font-size: 10px;">
+	<td align="center" style="font-size: 12px;">
 		<!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
-		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">Website Baker</a>
+		<a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a>
 		is	released under the
-		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
+		<a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
 		<!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
 	</td>
 </tr>
Index: branches/2.8.x/wb/templates/wb_theme/jquery/jquery-plugins.js
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/jquery/jquery-plugins.js	(revision 1263)
+++ branches/2.8.x/wb/templates/wb_theme/jquery/jquery-plugins.js	(revision 1264)
@@ -8,21 +8,17 @@
         if($(".jsadmin").length) {
             $.insert(WB_URL+"/modules/jsadmin/backend.css");
           }
-/*
-        if($("a[rel^='lightbox']").length) {
-            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2.css");
-            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2-min.js");
-          }
-        if($("textarea.markitup").length) {
-            $.insert(WB_URL+'/modules/markitup/latest/skins/markitup/style.css');
-            $.insert(WB_URL+'/modules/markitup/latest/sets/default/style.css');
-            $.insert(WB_URL+'/modules/markitup/latest/jquery.markitup.pack.js');
-            $.insert(WB_URL+'/modules/markitup/latest/sets/default/set.js');
 
-        	// Add markItUp! to your textarea in one line
-        	// $('textarea.markitup').markItUp( { Settings }, { OptionalExtraSettings } );
-        	$('textarea.markitup').markItUp(mySettings);
+	//Add external link class to external links -
+	$('a[href^="http://"]').filter(function() {
+		//Compare the anchor tag's host name with location's host name
+	    return this.hostname && this.hostname !== location.hostname;
+	  }).addClass("external").attr("target", "_blank");
 
-         }
- */
+	/* Add internal link class to external links -   */
+	$('a[href^="http://"]').filter(function() {
+		//Compare the anchor tag's host name with location's host name
+	    return this.hostname && this.hostname == location.hostname;
+	  }).addClass("internal");
+
 });
\ No newline at end of file
Index: branches/2.8.x/wb/templates/wb_theme/templates/footer.htt
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/templates/footer.htt	(revision 1263)
+++ branches/2.8.x/wb/templates/wb_theme/templates/footer.htt	(revision 1264)
@@ -5,11 +5,11 @@
 
 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
 <tr>
-	<td align="center" style="font-size: 10px;">
+	<td align="center" style="font-size: 12px;">
 		<!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
-		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">Website Baker</a>
-		is	released under the
-		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
+		<a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a>
+		is released under the
+		<a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
 		<!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
 	</td>
 </tr>
Index: branches/2.8.x/wb/templates/argos_theme/jquery/jquery-plugins.js
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/jquery/jquery-plugins.js	(revision 1263)
+++ branches/2.8.x/wb/templates/argos_theme/jquery/jquery-plugins.js	(revision 1264)
@@ -8,21 +8,16 @@
         if($(".jsadmin").length) {
             $.insert(WB_URL+"/modules/jsadmin/backend.css");
           }
-/*
-        if($("a[rel^='lightbox']").length) {
-            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2.css");
-            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2-min.js");
-          }
-        if($("textarea.markitup").length) {
-            $.insert(WB_URL+'/modules/markitup/latest/skins/markitup/style.css');
-            $.insert(WB_URL+'/modules/markitup/latest/sets/default/style.css');
-            $.insert(WB_URL+'/modules/markitup/latest/jquery.markitup.pack.js');
-            $.insert(WB_URL+'/modules/markitup/latest/sets/default/set.js');
+	//Add external link class to external links -
+	$('a[href^="http://"]').filter(function() {
+		//Compare the anchor tag's host name with location's host name
+	    return this.hostname && this.hostname !== location.hostname;
+	  }).addClass("external").attr("target", "_blank");
 
-        	// Add markItUp! to your textarea in one line
-        	// $('textarea.markitup').markItUp( { Settings }, { OptionalExtraSettings } );
-        	$('textarea.markitup').markItUp(mySettings);
+	/* Add internal link class to external links -   */
+	$('a[href^="http://"]').filter(function() {
+		//Compare the anchor tag's host name with location's host name
+	    return this.hostname && this.hostname == location.hostname;
+	  }).addClass("internal");
 
-         }
- */
 });
\ No newline at end of file
Index: branches/2.8.x/wb/templates/argos_theme/templates/footer.htt
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/templates/footer.htt	(revision 1263)
+++ branches/2.8.x/wb/templates/argos_theme/templates/footer.htt	(revision 1264)
@@ -6,9 +6,10 @@
 
 <table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0;">
   <tr>
-    <td align="center" style="font-size:10px;width:900px;">
+    <td align="center" style="font-size:12px;">
       <!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
-      <a href="http://www.websitebaker.org/" style="color: #000;" target="_blank">Website Baker</a> is	released under the <a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU
+      <a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a>
+      is released under the <a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU
       General Public License</a>
       <!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
     </td>
