Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1457)
+++ branches/2.8.x/CHANGELOG	(revision 1458)
@@ -11,6 +11,10 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.2 ------------------------------------
+26 Jun-2011 Build 1458 Dietmar Woellbrink (Luisehahne)
+# Ticket 833 fixed markup for table cells in view.php
+! change themes.css to make style more flexible in success.htt and error.htt
++ backend themes: add js function redirect_to_page(url, timer) to redirect without message
 25 Jun-2011 Build 1457 Dietmar Woellbrink (Luisehahne)
 ! Preparing 2.8.2 stable, last tests
 10 Jun-2011 Build 1456 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1457)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1458)
@@ -52,6 +52,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.2.RC6');
-if(!defined('REVISION')) define('REVISION', '1457');
+if(!defined('REVISION')) define('REVISION', '1458');
 
 ?>
Index: branches/2.8.x/wb/framework/class.wb.php
===================================================================
--- branches/2.8.x/wb/framework/class.wb.php	(revision 1457)
+++ branches/2.8.x/wb/framework/class.wb.php	(revision 1458)
@@ -399,7 +399,6 @@
 	    }
 	    $tpl->parse( 'main', 'main_block', false );
 	    $tpl->pparse( 'output', 'page' );
-		exit();
 	}
 
 	// Print an error message
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 1457)
+++ branches/2.8.x/wb/templates/wb_theme/jquery/jquery-plugins.js	(revision 1458)
@@ -1,26 +1,48 @@
-$(document).ready(function()
-{
-
-        if($(".jcalendar").length) {
-            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
-          }
-
-        if($(".jsadmin").length) {
-            $.insert(WB_URL+"/modules/jsadmin/backend.css");
-          }
-
-	//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");
-
-	$('form').attr('autocomplete', 'off');
-
+function include_file(filename, filetype) {
+
+	if(!filetype)
+		var filetype = 'js'; //js default filetype
+
+	var th = document.getElementsByTagName('head')[0];
+	var s = document.createElement((filetype == "js") ? 'script' : 'link');
+
+	s.setAttribute('type',(filetype == "js") ? 'text/javascript' : 'text/css');
+
+	if (filetype == "css")
+		s.setAttribute('rel','stylesheet');
+
+	s.setAttribute((filetype == "js") ? 'src' : 'href', filename);
+	th.appendChild(s);
+
+}
+
+function redirect_to_page (url, timer) {
+	setTimeout('self.location.href="'+url+'"', timer);
+}
+
+$(document).ready(function()
+{
+
+        if($(".jcalendar").length) {
+            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
+          }
+
+        if($(".jsadmin").length) {
+            $.insert(WB_URL+"/modules/jsadmin/backend.css");
+          }
+
+	//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");
+
+	$('form').attr('autocomplete', 'off');
+
 });
\ No newline at end of file
Index: branches/2.8.x/wb/templates/wb_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/theme.css	(revision 1457)
+++ branches/2.8.x/wb/templates/wb_theme/theme.css	(revision 1458)
@@ -152,7 +152,10 @@
 .section-info { margin : 1.5em 0; }
 
 .rounded { border-radius :10px; -khtml-border-radius :10px; -webkit-border-radius :10px; -moz-border-radius :10px; }
+.bigger { font-size :150%; }
+.strong { font-weight :bold; }
+
 .msg-box { background : #e5ffe6; border :0.2em #009900 solid; color :#336600; margin-bottom :1em; padding :0.63em; text-align :center; }
 .error-box { background :#fee; border :0.2em #844 solid; color :#400; margin-bottom :1em; padding :0.63em; text-align :center; }
-.bigger { font-size :150%; }
-.strong { font-weight :bold; }
\ No newline at end of file
+.msg-box p,
+.error-box p { font-size :120%; }
\ No newline at end of file
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 1457)
+++ branches/2.8.x/wb/templates/argos_theme/jquery/jquery-plugins.js	(revision 1458)
@@ -1,25 +1,47 @@
-$(document).ready(function()
-{
-
-        if($(".jcalendar").length) {
-            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
-          }
-
-        if($(".jsadmin").length) {
-            $.insert(WB_URL+"/modules/jsadmin/backend.css");
-          }
-	//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");
-
-	$('form').attr('autocomplete', 'off');
-
+function include_file(filename, filetype) {
+
+	if(!filetype)
+		var filetype = 'js'; //js default filetype
+
+	var th = document.getElementsByTagName('head')[0];
+	var s = document.createElement((filetype == "js") ? 'script' : 'link');
+
+	s.setAttribute('type',(filetype == "js") ? 'text/javascript' : 'text/css');
+
+	if (filetype == "css")
+		s.setAttribute('rel','stylesheet');
+
+	s.setAttribute((filetype == "js") ? 'src' : 'href', filename);
+	th.appendChild(s);
+
+}
+
+function redirect_to_page (url, timer) {
+	setTimeout('self.location.href="'+url+'"', timer);
+}
+
+$(document).ready(function()
+{
+
+        if($(".jcalendar").length) {
+            $.insert(WB_URL+"/include/jscalendar/calendar-system.css");
+          }
+
+        if($(".jsadmin").length) {
+            $.insert(WB_URL+"/modules/jsadmin/backend.css");
+          }
+	//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");
+
+	$('form').attr('autocomplete', 'off');
+
 });
\ No newline at end of file
Index: branches/2.8.x/wb/templates/argos_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/theme.css	(revision 1457)
+++ branches/2.8.x/wb/templates/argos_theme/theme.css	(revision 1458)
@@ -181,7 +181,10 @@
 .section-info { margin : 1.5em 0; }
 
 .rounded { border-radius :10px; -khtml-border-radius :10px; -webkit-border-radius :10px; -moz-border-radius :10px; }
+.bigger { font-size :150%; }
+.strong { font-weight :bold; }
+
 .msg-box { background : #e5ffe6; border :0.2em #009900 solid; color :#336600; margin-bottom :1em; padding :0.63em; text-align :center; }
 .error-box { background :#fee; border :0.2em #844 solid; color :#400; margin-bottom :1em; padding :0.63em; text-align :center; }
-.bigger { font-size :150%; }
-.strong { font-weight :bold; }
\ No newline at end of file
+.msg-box p,
+.error-box p { font-size :120%; }
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/view.php
===================================================================
--- branches/2.8.x/wb/modules/news/view.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/view.php	(revision 1458)
@@ -375,7 +375,6 @@
 		}
 	} else {
 	    	$wb->print_error($MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'], 'view.php', false);
-	    	exit(0);
 	}
 
 	// Print post header
@@ -420,12 +419,9 @@
 		} else {
 			// Say no comments found
 			$content = '';
-			if(isset($TEXT['NONE_FOUND'])) {
-				$content .= '<tr><td>'.$TEXT['NONE_FOUND'].'<br /></td></tr>';
-			} else {
-				$content .= '<tr><td>None Found<br /></td></tr>';
-			}
-			print $content;
+			$vars = array('[TITLE]','[COMMENT]','[TEXT_ON]','[DATE]','[TEXT_AT]','[TIME]','[TEXT_BY]','[USER_ID]','[USERNAME]','[DISPLAY_NAME]', '[EMAIL]');
+			$values = array( '', $MOD_NEWS['NO_COMMENT_FOUND'], '', '', '', '', '', '', '', '');
+			print str_replace($vars, $values, $setting_comments_loop);
 		}
 
 		// Print comments footer
Index: branches/2.8.x/wb/modules/news/languages/NL.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/NL.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/NL.php	(revision 1458)
@@ -1,40 +1,41 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-
-//Modul Description
-$module_description = 'Met deze module maak je een nieuwspagina.';
-
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = 'Eigenschappen van de Nieuwsmodule';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'Lees verder';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Geplaatst door';
-$MOD_NEWS['TEXT_ON'] = 'op';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Laatst vernieuwd';
-$MOD_NEWS['TEXT_AT'] = 'om';
-$MOD_NEWS['TEXT_BACK'] = 'Terug';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaren';
-$MOD_NEWS['TEXT_COMMENT'] = 'Commentaar';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Toevoegen commentaar';
-$MOD_NEWS['TEXT_BY'] = 'door';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Pagina niet gevonden';
-$TEXT['UNKNOWN'] = 'Guest';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+
+//Modul Description
+$module_description = 'Met deze module maak je een nieuwspagina.';
+
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = 'Eigenschappen van de Nieuwsmodule';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'Lees verder';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Geplaatst door';
+$MOD_NEWS['TEXT_ON'] = 'op';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Laatst vernieuwd';
+$MOD_NEWS['TEXT_AT'] = 'om';
+$MOD_NEWS['TEXT_BACK'] = 'Terug';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaren';
+$MOD_NEWS['TEXT_COMMENT'] = 'Commentaar';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Toevoegen commentaar';
+$MOD_NEWS['TEXT_BY'] = 'door';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Pagina niet gevonden';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Guest';
+
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/PL.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/PL.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/PL.php	(revision 1458)
@@ -34,6 +34,7 @@
 $MOD_NEWS['TEXT_ADD_COMMENT'] = 'Dodaj komentarz';
 $MOD_NEWS['TEXT_BY'] = 'Dodano:';
 $MOD_NEWS['PAGE_NOT_FOUND'] = 'Strona nie istnieje';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
 $TEXT['UNKNOWN'] = 'GoÅ›Ä‡';
 
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/NO.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/NO.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/NO.php	(revision 1458)
@@ -1,39 +1,40 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Modul Description
-$module_description = 'Med denne modulen kan du lage Nyhets sider.';
-  
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = 'Innstillinger for Nyheter';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'Les Mer';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Skervet Av';
-$MOD_NEWS['TEXT_ON'] = 'P&aring;';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sist Endret';
-$MOD_NEWS['TEXT_AT'] = 'p&aring;';
-$MOD_NEWS['TEXT_BACK'] = 'Tilbake';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
-$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Legg Til Kommentar';
-$MOD_NEWS['TEXT_BY'] = 'Av';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Finner ikke siden ';
-$TEXT['UNKNOWN'] = 'Guest';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Modul Description
+$module_description = 'Med denne modulen kan du lage Nyhets sider.';
+  
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = 'Innstillinger for Nyheter';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'Les Mer';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Skervet Av';
+$MOD_NEWS['TEXT_ON'] = 'P&aring;';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sist Endret';
+$MOD_NEWS['TEXT_AT'] = 'p&aring;';
+$MOD_NEWS['TEXT_BACK'] = 'Tilbake';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
+$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Legg Til Kommentar';
+$MOD_NEWS['TEXT_BY'] = 'Av';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Finner ikke siden ';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Guest';
+
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/EN.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/EN.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/EN.php	(revision 1458)
@@ -1,39 +1,40 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Modul Description
-$module_description = 'This page type is designed for making a news page.';
-
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = 'News Settings';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'Read More';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
-$MOD_NEWS['TEXT_ON'] = 'on';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Last changed';
-$MOD_NEWS['TEXT_AT'] = 'at';
-$MOD_NEWS['TEXT_BACK'] = 'Back';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Comments';
-$MOD_NEWS['TEXT_COMMENT'] = 'Comment';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Add Comment';
-$MOD_NEWS['TEXT_BY'] = 'By';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
-$TEXT['UNKNOWN'] = 'Guest';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Modul Description
+$module_description = 'This page type is designed for making a news page.';
+
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = 'News Settings';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'Read More';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
+$MOD_NEWS['TEXT_ON'] = 'on';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Last changed';
+$MOD_NEWS['TEXT_AT'] = 'at';
+$MOD_NEWS['TEXT_BACK'] = 'Back';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Comments';
+$MOD_NEWS['TEXT_COMMENT'] = 'Comment';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Add Comment';
+$MOD_NEWS['TEXT_BY'] = 'By';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Guest';
+
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/DA.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/DA.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/DA.php	(revision 1458)
@@ -1,39 +1,40 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Modul Description
-$module_description = 'Denne side er beregnet til at lave en nyhedsside.';
-
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = 'Nyhedsindstillinger';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'L&aelig;s mere';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Indsendt af';
-$MOD_NEWS['TEXT_ON'] = 'den';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sidst &aelig;ndret';
-$MOD_NEWS['TEXT_AT'] = 'kl.';
-$MOD_NEWS['TEXT_BACK'] = 'Tilbage';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
-$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Tilf&oslash;j kommentar';
-$MOD_NEWS['TEXT_BY'] = 'Af';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
-$TEXT['UNKNOWN'] = 'Guest';
-
-?>
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Modul Description
+$module_description = 'Denne side er beregnet til at lave en nyhedsside.';
+
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = 'Nyhedsindstillinger';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'L&aelig;s mere';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Indsendt af';
+$MOD_NEWS['TEXT_ON'] = 'den';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Sidst &aelig;ndret';
+$MOD_NEWS['TEXT_AT'] = 'kl.';
+$MOD_NEWS['TEXT_BACK'] = 'Tilbage';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
+$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Tilf&oslash;j kommentar';
+$MOD_NEWS['TEXT_BY'] = 'Af';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Guest';
+
+?>
Index: branches/2.8.x/wb/modules/news/languages/RU.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/RU.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/RU.php	(revision 1458)
@@ -1,39 +1,40 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Modul Description
-$module_description = '&#1052;&#1086;&#1076;&#1091;&#1083;&#1100; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1083;&#1077;&#1085;&#1090;&#1099; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1077;&#1081;';
-
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = '&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1085;&#1086;&#1081; &#1083;&#1077;&#1085;&#1090;&#1099;';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = '&#1063;&#1080;&#1090;&#1072;&#1090;&#1100; &#1076;&#1072;&#1083;&#1100;&#1096;&#1077;';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
-$MOD_NEWS['TEXT_ON'] = 'on';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = '&#1055;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1077; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;';
-$MOD_NEWS['TEXT_AT'] = 'at';
-$MOD_NEWS['TEXT_BACK'] = '&#1053;&#1072;&#1079;&#1072;&#1076;';
-$MOD_NEWS['TEXT_COMMENTS'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1072;&#1088;&#1080;&#1080;';
-$MOD_NEWS['TEXT_COMMENT'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = '&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
-$MOD_NEWS['TEXT_BY'] = 'By';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
-$TEXT['UNKNOWN'] = 'Guest';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Modul Description
+$module_description = '&#1052;&#1086;&#1076;&#1091;&#1083;&#1100; &#1087;&#1088;&#1077;&#1076;&#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085; &#1076;&#1083;&#1103; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1083;&#1077;&#1085;&#1090;&#1099; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1077;&#1081;';
+
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = '&#1053;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1085;&#1086;&#1074;&#1086;&#1089;&#1090;&#1085;&#1086;&#1081; &#1083;&#1077;&#1085;&#1090;&#1099;';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = '&#1063;&#1080;&#1090;&#1072;&#1090;&#1100; &#1076;&#1072;&#1083;&#1100;&#1096;&#1077;';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by';
+$MOD_NEWS['TEXT_ON'] = 'on';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = '&#1055;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1077; &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;';
+$MOD_NEWS['TEXT_AT'] = 'at';
+$MOD_NEWS['TEXT_BACK'] = '&#1053;&#1072;&#1079;&#1072;&#1076;';
+$MOD_NEWS['TEXT_COMMENTS'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1072;&#1088;&#1080;&#1080;';
+$MOD_NEWS['TEXT_COMMENT'] = '&#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = '&#1044;&#1086;&#1073;&#1072;&#1074;&#1080;&#1090;&#1100; &#1050;&#1086;&#1084;&#1084;&#1077;&#1085;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;';
+$MOD_NEWS['TEXT_BY'] = 'By';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page not found';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Guest';
+
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/FR.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/FR.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/FR.php	(revision 1458)
@@ -1,39 +1,40 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Module Description
-$module_description = 'Ce type de page est conçu &agrave faire une page de nouvelles.';
-
-//Variables for the  backend
-$MOD_NEWS['SETTINGS'] = 'Configurations Nouvelles';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'En savoir plus';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Post&eacute; par';
-$MOD_NEWS['TEXT_ON'] = '&agrave;';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Derni&egrave;re modification';
-$MOD_NEWS['TEXT_AT'] = '&agrave;';
-$MOD_NEWS['TEXT_BACK'] = 'Retour';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaires';
-$MOD_NEWS['TEXT_COMMENT'] = 'Commentaire';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Ajouter un commentaire';
-$MOD_NEWS['TEXT_BY'] = 'Par';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page non trouv&eacute;e';
-$TEXT['UNKNOWN'] = 'Invit&eacute;';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Module Description
+$module_description = 'Ce type de page est conçu &agrave faire une page de nouvelles.';
+
+//Variables for the  backend
+$MOD_NEWS['SETTINGS'] = 'Configurations Nouvelles';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'En savoir plus';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Post&eacute; par';
+$MOD_NEWS['TEXT_ON'] = '&agrave;';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Derni&egrave;re modification';
+$MOD_NEWS['TEXT_AT'] = '&agrave;';
+$MOD_NEWS['TEXT_BACK'] = 'Retour';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Commentaires';
+$MOD_NEWS['TEXT_COMMENT'] = 'Commentaire';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Ajouter un commentaire';
+$MOD_NEWS['TEXT_BY'] = 'Par';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Page non trouv&eacute;e';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Invit&eacute;';
+
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/SE.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/SE.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/SE.php	(revision 1458)
@@ -1,39 +1,40 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Modul Description
-$module_description = 'Den h&auml;r sidtypen &auml;r designad f&ouml;r att skapa en nyhetssida.';
-
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = 'Inst&auml;llningar';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'L&auml;s mer';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Postat av';
-$MOD_NEWS['TEXT_ON'] = 'den';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Senaste &auml;ndring';
-$MOD_NEWS['TEXT_AT'] = 'kl.';
-$MOD_NEWS['TEXT_BACK'] = 'Tillbaka';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
-$MOD_NEWS['TEXT_COMMENT'] = 'kommentar';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentera';
-$MOD_NEWS['TEXT_BY'] = 'Av';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Sidan kunde inte hittas';
-$TEXT['UNKNOWN'] = 'Guest';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Modul Description
+$module_description = 'Den h&auml;r sidtypen &auml;r designad f&ouml;r att skapa en nyhetssida.';
+
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = 'Inst&auml;llningar';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'L&auml;s mer';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Postat av';
+$MOD_NEWS['TEXT_ON'] = 'den';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Senaste &auml;ndring';
+$MOD_NEWS['TEXT_AT'] = 'kl.';
+$MOD_NEWS['TEXT_BACK'] = 'Tillbaka';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentarer';
+$MOD_NEWS['TEXT_COMMENT'] = 'kommentar';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentera';
+$MOD_NEWS['TEXT_BY'] = 'Av';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Sidan kunde inte hittas';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'No comment found';
+$TEXT['UNKNOWN'] = 'Guest';
+
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/modules/news/languages/DE.php
===================================================================
--- branches/2.8.x/wb/modules/news/languages/DE.php	(revision 1457)
+++ branches/2.8.x/wb/modules/news/languages/DE.php	(revision 1458)
@@ -1,39 +1,41 @@
-<?php
-/**
- *
- * @category        modules
- * @package         news
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
- * @link			http://www.websitebaker2.org/
- * @license         http://www.gnu.org/licenses/gpl.html
- * @platform        WebsiteBaker 2.8.x
- * @requirements    PHP 5.2.2 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-//Modul Description
-$module_description = 'Mit diesem Modul k&ouml;nnen sie eine News Seite ihrer Seite hinzuf&uuml;gen.';
-
-//Variables for the backend
-$MOD_NEWS['SETTINGS'] = 'News Einstellungen';
-
-//Variables for the frontend
-$MOD_NEWS['TEXT_READ_MORE'] = 'Weiterlesen';
-$MOD_NEWS['TEXT_POSTED_BY'] = 'Ver&ouml;ffentlicht von';
-$MOD_NEWS['TEXT_ON'] = 'am';
-$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Zuletzt ge&auml;ndert am';
-$MOD_NEWS['TEXT_AT'] = 'um';
-$MOD_NEWS['TEXT_BACK'] = 'Zur&uuml;ck';
-$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentare';
-$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
-$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentar hinzuf&uuml;gen';
-$MOD_NEWS['TEXT_BY'] = 'von';
-$MOD_NEWS['PAGE_NOT_FOUND'] = 'Seite nicht gefunden';
-$TEXT['UNKNOWN'] = 'Gast';
-
+<?php
+/**
+ *
+ * @category        modules
+ * @package         news
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2011, Website Baker Org. e.V.
+ * @link			http://www.websitebaker2.org/
+ * @license         http://www.gnu.org/licenses/gpl.html
+ * @platform        WebsiteBaker 2.8.x
+ * @requirements    PHP 5.2.2 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+//Modul Description
+$module_description = 'Mit diesem Modul k&ouml;nnen sie eine News Seite ihrer Seite hinzuf&uuml;gen.';
+
+//Variables for the backend
+$MOD_NEWS['SETTINGS'] = 'News Einstellungen';
+
+//Variables for the frontend
+$MOD_NEWS['TEXT_READ_MORE'] = 'Weiterlesen';
+$MOD_NEWS['TEXT_POSTED_BY'] = 'Ver&ouml;ffentlicht von';
+$MOD_NEWS['TEXT_ON'] = 'am';
+$MOD_NEWS['TEXT_LAST_CHANGED'] = 'Zuletzt ge&auml;ndert am';
+$MOD_NEWS['TEXT_AT'] = 'um';
+$MOD_NEWS['TEXT_BACK'] = 'Zur&uuml;ck';
+$MOD_NEWS['TEXT_COMMENTS'] = 'Kommentare';
+$MOD_NEWS['TEXT_COMMENT'] = 'Kommentar';
+$MOD_NEWS['TEXT_ADD_COMMENT'] = 'Kommentar hinzuf&uuml;gen';
+$MOD_NEWS['TEXT_BY'] = 'von';
+$MOD_NEWS['PAGE_NOT_FOUND'] = 'Seite nicht gefunden';
+$MOD_NEWS['NO_COMMENT_FOUND'] = 'Kein Kommentar gefunden';
+
+$TEXT['UNKNOWN'] = 'Gast';
+
 ?>
\ No newline at end of file
