Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1191)
+++ branches/2.8.x/CHANGELOG	(revision 1192)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.1 -------------------------------------
+27-Nov-2009 Dietmar Woellbrink (Luisehahne)
+!	fixed parse error ticket #878 
 26-Nov-2009 Dietmar Woellbrink (Luisehahne)
 !	found and fix some deprecated functions
 26-Nov-2009 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/framework/class.login.php
===================================================================
--- branches/2.8.x/wb/framework/class.login.php	(revision 1191)
+++ branches/2.8.x/wb/framework/class.login.php	(revision 1192)
@@ -24,9 +24,17 @@
 */
 
 /*
+ * @category   backend
+ * @package    Login class
+ * @author(s)  Dietmar Wöllbrink <Luisehahne>, Dietrich Roland Pehlke <Aldus>
+ * @platform   WB 2.8.x
+ * @require    PHP 5.2.11
+ * @license    http://www.gnu.org/licenses/gpl.html
+ * @link       http://project.websitebaker2.org/browser/branches/2.8.x/wb/pages
+ * @changeset  2009/11/27   fixed parse error ticket #878
 
-Login class
 
+
 This class will be used to with the login application
 
 */
@@ -229,7 +237,8 @@
 			$_SESSION['GROUP_NAME'] = array();
 
 			$first_group = true;
-			foreach (explode("," $this->get_session('GROUPS_ID')) as $cur_group_id) {
+			foreach (explode(",", $this->get_session('GROUPS_ID')) as $cur_group_id)
+            {
 				$query = "SELECT * FROM ".$this->GROUPS_TABLE." WHERE group_id = '".$cur_group_id."'";
 				$results = $database->query($query);
 				$results_array = $results->fetchRow();
