Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1966)
+++ branches/2.8.x/CHANGELOG	(revision 1967)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+23 Sep-2013 Build 1967 Manuela v.d.Decken(DarkViper)
+# /news/add.php fixed some little HTML syntax bugs
 20 Sep-2013 Build 1966 Manuela v.d.Decken(DarkViper)
 ! upgrade-script.php add loading interface PasswordHashInterface
 19 Sep-2013 Build 1965 Manuela v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1966)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1967)
@@ -51,5 +51,5 @@
 
 // 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.3');
-if(!defined('REVISION')) define('REVISION', '1966');
+if(!defined('REVISION')) define('REVISION', '1967');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/news/add.php
===================================================================
--- branches/2.8.x/wb/modules/news/add.php	(revision 1966)
+++ branches/2.8.x/wb/modules/news/add.php	(revision 1967)
@@ -20,7 +20,7 @@
 	throw new IllegalFileException();
 }
 
-	$header      = '<table class="loop-header"'.PHP_EOL
+	$header      = '<table class="loop-header">'.PHP_EOL
 	             . '  <tbody>'.PHP_EOL;
 	$post_loop   = '    <tr class="post-top">'.PHP_EOL
 	             . '      <td class="post-title"><a href="[LINK]">[TITLE]</a></td>'.PHP_EOL
@@ -35,7 +35,7 @@
 	             . '    </tr>';
 	$footer      = '  </tbody>'.PHP_EOL
 	             . '</table>'.PHP_EOL
-	             . '<table class="page-header" style="display: [DISPLAY_PREVIOUS_NEXT_LINKS]'.PHP_EOL
+	             . '<table class="page-header" style="display: [DISPLAY_PREVIOUS_NEXT_LINKS]>'.PHP_EOL
 	             . '  <tbody>'.PHP_EOL
 	             . '    <tr>'.PHP_EOL
 	             . '      <td class="page-left">[PREVIOUS_PAGE_LINK]</td>'.PHP_EOL
@@ -44,7 +44,7 @@
 	             . '    </tr>'.PHP_EOL
 	             . '  </tbody>'.PHP_EOL
 	             . '</table>'.PHP_EOL;
-	$post_header = '<table class="post-header"'.PHP_EOL
+	$post_header = '<table class="post-header">'.PHP_EOL
 	             . '  <tbody>'.PHP_EOL
 	             . '    <tr>'.PHP_EOL
 	             . '      <td><h1>[TITLE]</h1></td>'.PHP_EOL
