Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1312)
+++ branches/2.8.x/CHANGELOG	(revision 1313)
@@ -11,6 +11,12 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.1 -------------------------------------
+11-Apr-2010 Dietmar Woellbrink (Luisehahne)
+!	show_menu2 remove unneeded code for WB < 2.7
+!	class.wb.php, recoding backend preference
++	add a language variable $MESSAGE['PREFERENCES']['INVALID_CHARS']
+!	update theme.css for preference.htt in argos_theme & wb_theme
+!	remove classic_theme
 07-Apr-2010 Dietmar Woellbrink (Luisehahne)
 #	Ticket #971 Using $_POST in Admin - account - login.php (tks to Aldus)
 !	update class.wb.php added tokens function
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1312)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1313)
@@ -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.x');
-if(!defined('REVISION')) define('REVISION', '1312');
+if(!defined('REVISION')) define('REVISION', '1313');
 
 ?>
\ No newline at end of file
Index: branches/2.8.x/wb/admin/preferences/details.php
===================================================================
--- branches/2.8.x/wb/admin/preferences/details.php	(revision 1312)
+++ branches/2.8.x/wb/admin/preferences/details.php	(nonexistent)
@@ -1,103 +0,0 @@
-<?php
-
-/****************************************************************************
-* SVN Version information:
-*
-* $Id$
-*
-*****************************************************************************
-*
-*****************************************************************************
-*                          WebsiteBaker
-*
-* WebsiteBaker Project <http://www.websitebaker2.org/>
-* Copyright (C) 2009, Website Baker Org. e.V.
-*         http://start.websitebaker2.org/impressum-datenschutz.php
-* Copyright (C) 2004-2009, Ryan Djurovich
-*
-*                        About WebsiteBaker
-*
-* Website Baker is a PHP-based Content Management System (CMS)
-* designed with one goal in mind: to enable its users to produce websites
-* with ease.
-*
-*****************************************************************************
-*
-*****************************************************************************
-*                   WebsiteBaker Extra Information (where needed)
-*
-* @author       : Ryan Djurovich, stefan, Matthias Gallas, Manuel Lang
-* @platform     : WebsiteBaker 2.8
-*
-*****************************************************************************
-*
-*****************************************************************************
-*                        LICENSE INFORMATION
-*
-* WebsiteBaker is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License
-* as published by the Free Software Foundation; either version 2
-* of the License, or (at your option) any later version.
-*
-* WebsiteBaker is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-* See the GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-*****************************************************************************/
-
-// Print admin header
-require('../../config.php');
-require_once(WB_PATH.'/framework/class.admin.php');
-$admin = new admin('Preferences');
-
-// Get entered values
-$display_name = $admin->add_slashes(strip_tags($admin->get_post('display_name')));
-$language = $admin->get_post('language');
-$timezone = $admin->get_post('timezone')*60*60;
-$date_format = $admin->get_post('date_format');
-$time_format = $admin->get_post('time_format');
-
-// Update the database
-$database = new database();
-$query = "UPDATE ".TABLE_PREFIX."users SET display_name = '$display_name', language = '$language', timezone = '$timezone', date_format = '$date_format', time_format = '$time_format' WHERE user_id = '".$admin->get_user_id()."'";
-$database->query($query);
-if($database->is_error()) {
-	$admin->print_error($database->get_error());
-} else {
-	$admin->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED']);
-	$_SESSION['DISPLAY_NAME'] = $display_name;
-	$_SESSION['LANGUAGE'] = $language;
-	// Update date format
-	if($date_format != '') {
-		$_SESSION['DATE_FORMAT'] = $date_format;
-		if(isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) { unset($_SESSION['USE_DEFAULT_DATE_FORMAT']); }
-	} else {
-		$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;
-		if(isset($_SESSION['DATE_FORMAT'])) { unset($_SESSION['DATE_FORMAT']); }
-	}
-	// Update time format
-	if($time_format != '') {
-		$_SESSION['TIME_FORMAT'] = $time_format;
-		if(isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) { unset($_SESSION['USE_DEFAULT_TIME_FORMAT']); }
-	} else {
-		$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;
-		if(isset($_SESSION['TIME_FORMAT'])) { unset($_SESSION['TIME_FORMAT']); }
-	}
-	// Update timezone
-	if($timezone != '-72000') {
-		$_SESSION['TIMEZONE'] = $timezone;
-		if(isset($_SESSION['USE_DEFAULT_TIMEZONE'])) { unset($_SESSION['USE_DEFAULT_TIMEZONE']); }
-	} else {
-		$_SESSION['USE_DEFAULT_TIMEZONE'] = true;
-		if(isset($_SESSION['TIMEZONE'])) { unset($_SESSION['TIMEZONE']); }
-	}
-}
-
-// Print admin footer
-$admin->print_footer();
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/admin/preferences/details.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/admin/preferences/email.php
===================================================================
--- branches/2.8.x/wb/admin/preferences/email.php	(revision 1312)
+++ branches/2.8.x/wb/admin/preferences/email.php	(nonexistent)
@@ -1,67 +0,0 @@
-<?php
-
-// $Id$
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2009, Ryan Djurovich
-
- Website Baker is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- Website Baker is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-// Print admin header
-require('../../config.php');
-require_once(WB_PATH.'/framework/class.admin.php');
-$admin = new admin('Preferences');
-
-// Get entered values
-$password = $admin->get_post('current_password');
-$email = $admin->get_post('email');
-
-// Create a javascript back link
-$js_back = "javascript: history.go(-1);";
-
-// Get password
-$database = new database();
-$query = "SELECT user_id FROM ".TABLE_PREFIX."users WHERE user_id = '".$admin->get_user_id()."' AND password = '".md5($password)."'";
-$results = $database->query($query);
-
-// Validate values
-if($results->numRows() == 0) {
-	$admin->print_error($MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT']);
-}
-if(!$admin->validate_email($email)) {
-	$admin->print_error($MESSAGE['USERS']['INVALID_EMAIL']);
-}
-
-$email = $admin->add_slashes($email);
-
-// Update the database
-$database = new database();
-$query = "UPDATE ".TABLE_PREFIX."users SET email = '$email' WHERE user_id = '".$admin->get_user_id()."'";
-$database->query($query);
-if($database->is_error()) {
-	$admin->print_error($database->get_error);
-} else {
-	$admin->print_success($MESSAGE['PREFERENCES']['EMAIL_UPDATED']);
-	$_SESSION['EMAIL'] = $email;
-}
-
-// Print admin footer
-$admin->print_footer();
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/admin/preferences/email.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/admin/preferences/password.php
===================================================================
--- branches/2.8.x/wb/admin/preferences/password.php	(revision 1312)
+++ branches/2.8.x/wb/admin/preferences/password.php	(nonexistent)
@@ -1,71 +0,0 @@
-<?php
-
-// $Id$
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2009, Ryan Djurovich
-
- Website Baker is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- Website Baker is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-// Print admin header
-require('../../config.php');
-require_once(WB_PATH.'/framework/class.admin.php');
-$admin = new admin('Preferences');
-
-// Get entered values
-$current_password = $admin->get_post('current_password');
-$new_password = $admin->get_post('new_password');
-$new_password2 = $admin->get_post('new_password2');
-
-// Create a javascript back link
-$js_back = "javascript: history.go(-1);";
-
-// Get existing password
-$database = new database();
-$query = "SELECT user_id FROM ".TABLE_PREFIX."users WHERE user_id = '".$admin->get_user_id()."' AND password = '".md5($current_password)."'";
-$results = $database->query($query);
-
-// Validate values
-if($results->numRows() == 0) {
-	$admin->print_error($MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT']);
-}
-if(strlen($new_password) < 3) {
-	$admin->print_error($MESSAGE['USERS']['PASSWORD_TOO_SHORT'], $js_back);
-}
-if($new_password != $new_password2) {
-	$admin->print_error($MESSAGE['USERS']['PASSWORD_MISMATCH'], $js_back);
-}
-
-// MD5 the password
-$md5_password = md5($new_password);
-
-// Update the database
-$database = new database();
-$query = "UPDATE ".TABLE_PREFIX."users SET password = '$md5_password' WHERE user_id = '".$admin->get_user_id()."'";
-$database->query($query);
-if($database->is_error()) {
-	$admin->print_error($database->get_error);
-} else {
-	$admin->print_success($MESSAGE['PREFERENCES']['PASSWORD_CHANGED']);
-}
-
-// Print admin footer
-$admin->print_footer();
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/admin/preferences/password.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/admin/preferences/save.php
===================================================================
--- branches/2.8.x/wb/admin/preferences/save.php	(nonexistent)
+++ branches/2.8.x/wb/admin/preferences/save.php	(revision 1313)
@@ -0,0 +1,176 @@
+<?php
+/**
+ *
+ * @category        admin
+ * @package         preferences
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2010, 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 4.4.9 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+
+// Print admin header
+require('../../config.php');
+require_once(WB_PATH.'/framework/class.admin.php');
+$admin = new admin('Preferences');
+$js_back = "javascript: history.go(-1);"; // Create a javascript back link
+
+function save_preferences( &$admin, &$database)
+{
+	global $MESSAGE;
+	$err_msg = array();
+	$min_pass_length = 6;
+// first check form-tan
+	if(!$admin->checkFTAN()){ $err_msg[] = $MESSAGE['PAGES']['NOT_SAVED']; }
+// Get entered values and validate all
+	// remove any dangerouse chars from display_name
+	$display_name     = $admin->add_slashes(strip_tags(trim($admin->get_post('display_name'))));
+	$display_name     = ( $display_name == '' ? $admin->get_display_name() : $display_name );
+	// check that display_name is unique in whoole system (prevents from User-faking)
+	$sql  = 'SELECT COUNT(*) FROM `'.TABLE_PREFIX.'users` ';
+	$sql .= 'WHERE `user_id` <> '.(int)$admin->get_user_id().' AND `display_name` LIKE "'.$display_name.'"';
+	if( $database->get_one($sql) > 0 ){ $err_msg[] = $MESSAGE['USERS']['USERNAME_TAKEN']; }
+// language must be 2 upercase letters only
+	$language         = strtoupper($admin->get_post('language'));
+	$language         = (preg_match('/^[A-Z]{2}$/', $language) ? $language : DEFAULT_LANGUAGE);
+// timezone must be between -12 and +13  or -20 as system_default
+	$timezone         = $admin->get_post('timezone');
+	$timezone         = (is_numeric($timezone) ? $timezone : -20);
+	$timezone         = ( ($timezone >= -12 && $timezone <= 13) ? $timezone : -20 ) * 3600;
+// date_format must be a key from /interface/date_formats
+	$date_format      = $admin->get_post('date_format');
+	$user_time = true;
+	include( ADMIN_PATH.'/interface/date_formats.php' );
+	$date_format = (array_key_exists($date_format, $DATE_FORMATS) ? $date_format :	$DATE_FORMATS['system_default']);
+	$date_format = ($DATE_FORMATS['system_default'] == $date_format ? '' : $date_format);
+	unset($DATE_FORMATS);
+// time_format must be a key from /interface/time_formats	
+	$time_format      = $admin->get_post('time_format');
+	$user_time = true;
+	include( ADMIN_PATH.'/interface/time_formats.php' );
+	$time_format = (array_key_exists($time_format, $TIME_FORMATS) ? $time_format :	$TIME_FORMATS['system_default']);
+	$time_format = ($TIME_FORMATS['system_default'] == $time_format ? '' : $time_format);
+	unset($TIME_FORMATS);
+// email should be validatet by core
+	$email            = ( $admin->get_post('email') == null ? '' : $admin->get_post('email') );
+	if( !$admin->validate_email($email) )
+	{
+		$email = '';
+		$err_msg[] = $MESSAGE['USERS']['INVALID_EMAIL'];
+	}else {
+	// check that email is unique in whoole system
+		$email = $admin->add_slashes($email);
+		$sql  = 'SELECT COUNT(*) FROM `'.TABLE_PREFIX.'users` ';
+		$sql .= 'WHERE `user_id` <> '.(int)$admin->get_user_id().' AND `email` LIKE "'.$email.'"';
+		if( $database->get_one($sql) > 0 ){ $err_msg[] = $MESSAGE['USERS']['EMAIL_TAKEN']; }
+	}
+// receive password vars and calculate needed action
+	$current_password = $admin->get_post('current_password');
+	$current_password = ($current_password == null ? '' : $current_password);
+	$new_password_1   = $admin->get_post('new_password_1');
+	$new_password_1   = (($new_password_1 == null || $new_password_1 == '') ? '' : $new_password_1);
+	$new_password_2   = $admin->get_post('new_password_2');
+	$new_password_2   = (($new_password_2 == null || $new_password_2 == '') ? '' : $new_password_2);
+	if($current_password == '')
+	{
+		$err_msg[] = $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'];
+	}else {
+	// if new_password is empty, still let current one
+		if( $new_password_1 == '' )
+		{
+			$new_password_1 = $current_password;
+			$new_password_2 = $current_password;
+		}
+
+	// is password lenght matching min_pass_lenght ?
+		if( $new_password_1 != $current_password )
+		{
+			if( strlen($new_password_1) < $min_pass_length )
+			{
+				$err_msg[] = $MESSAGE['USERS']['PASSWORD_TOO_SHORT'];
+			}
+			$pattern = '/[^'.$admin->password_chars.']/';
+			if( preg_match($pattern, $new_password_1) )
+			{
+				$err_msg[] = $MESSAGE['PREFERENCES']['INVALID_CHARS'];
+			}
+		}
+	// is password lenght matching min_pass_lenght ?
+		if( $new_password_1 != $current_password && strlen($new_password_1) < $min_pass_length )
+		{
+			$err_msg[] = $MESSAGE['USERS']['PASSWORD_TOO_SHORT'];
+		}
+	// password_1 matching password_2 ?
+		if( $new_password_1 != $new_password_2 )
+		{
+			$err_msg[] = $MESSAGE['USERS']['PASSWORD_MISMATCH'];
+		}
+	}
+	$current_password = md5($current_password);
+	$new_password_1   = md5($new_password_1);
+	$new_password_2   = md5($new_password_2);
+// if no validation errors, try to update the database, otherwise return errormessages
+	if(sizeof($err_msg) == 0)
+	{
+		$sql  = 'UPDATE `'.TABLE_PREFIX.'users` ';
+		$sql .= 'SET `display_name` = "'.$display_name.'", ';
+		$sql .=     '`password` = "'.$new_password_1.'", ';
+		$sql .=     '`email` = "'.$email.'", ';
+		$sql .=     '`language` = "'.$language.'", ';
+		$sql .=     '`timezone` = "'.$timezone.'", ';
+		$sql .=     '`date_format` = "'.$date_format.'", ';
+		$sql .=     '`time_format` = "'.$time_format.'" ';
+		$sql .= 'WHERE `user_id` = '.(int)$admin->get_user_id().' AND `password` = "'.$current_password.'"';
+		if( $database->query($sql) )
+		{
+			$sql_info = mysql_info($database->db_handle);
+			if(preg_match('/matched: *([1-9][0-9]*)/i', $sql_info) != 1)
+			{  // if the user_id and password dosn't match
+				$err_msg[] = $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'];
+			}else {
+				// update successfull, takeover values into the session
+				$_SESSION['DISPLAY_NAME'] = $display_name;
+				$_SESSION['LANGUAGE'] = $language;
+				$_SESSION['TIMEZONE'] = $timezone;
+				$_SESSION['EMAIL'] = $email;
+				// Update date format
+				if($date_format != '') {
+					$_SESSION['DATE_FORMAT'] = $date_format;
+					if(isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) { unset($_SESSION['USE_DEFAULT_DATE_FORMAT']); }
+				} else {
+					$_SESSION['USE_DEFAULT_DATE_FORMAT'] = true;
+					if(isset($_SESSION['DATE_FORMAT'])) { unset($_SESSION['DATE_FORMAT']); }
+				}
+				// Update time format
+				if($time_format != '') {
+					$_SESSION['TIME_FORMAT'] = $time_format;
+					if(isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) { unset($_SESSION['USE_DEFAULT_TIME_FORMAT']); }
+				} else {
+					$_SESSION['USE_DEFAULT_TIME_FORMAT'] = true;
+					if(isset($_SESSION['TIME_FORMAT'])) { unset($_SESSION['TIME_FORMAT']); }
+				}
+			}
+		}else {
+			$err_msg[] = 'invalid database UPDATE call in '.__FILE__.'::'.__FUNCTION__.'before line '.__LINE__;
+		}
+	}
+	return ( (sizeof($err_msg) > 0) ? implode('<br />', $err_msg) : '' );
+}
+$retval = save_preferences($admin, $database);
+if( $retval == '')
+{
+	$admin->print_success($MESSAGE['PREFERENCES']['DETAILS_SAVED']);
+	$admin->print_footer();
+}else {
+	$admin->print_error($retval, $js_back);
+}
+
+?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/admin/preferences/save.php
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1,4 ##
+Id
+Revision
+HeadURL
+Date
\ No newline at end of property
Index: branches/2.8.x/wb/admin/preferences/index.php
===================================================================
--- branches/2.8.x/wb/admin/preferences/index.php	(revision 1312)
+++ branches/2.8.x/wb/admin/preferences/index.php	(revision 1313)
@@ -1,197 +1,150 @@
-<?php
-
-/****************************************************************************
-* SVN Version information:
-*
-* $Id$
-*
-*****************************************************************************
-*
-*****************************************************************************
-*                          WebsiteBaker
-*
-* WebsiteBaker Project <http://www.websitebaker2.org/>
-* Copyright (C) 2009, Website Baker Org. e.V.
-*         http://start.websitebaker2.org/impressum-datenschutz.php
-* Copyright (C) 2004-2009, Ryan Djurovich
-*
-*                        About WebsiteBaker
-*
-* Website Baker is a PHP-based Content Management System (CMS)
-* designed with one goal in mind: to enable its users to produce websites
-* with ease.
-*
-*****************************************************************************
-*
-*****************************************************************************
-*                   WebsiteBaker Extra Information
-*
-* @author       : Ryan Djurovich, stefan, Matthias Gallas, thorn, Manuel Lang
-* @platform     : WebsiteBaker 2.8
-*
-*****************************************************************************
-*
-*****************************************************************************
-*                        LICENSE INFORMATION
-*
-* WebsiteBaker is free software; you can redistribute it and/or
-* modify it under the terms of the GNU General Public License
-* as published by the Free Software Foundation; either version 2
-* of the License, or (at your option) any later version.
-*
-* WebsiteBaker is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-* See the GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-*****************************************************************************/
-
-require('../../config.php');
-require_once(WB_PATH.'/framework/class.admin.php');
-$admin = new admin('Preferences');
-
-require_once(WB_PATH.'/framework/functions-utf8.php');
-
-// Create new template object for the preferences form
-$template = new Template(THEME_PATH.'/templates');
-$template->set_file('page', 'preferences.htt');
-$template->set_block('page', 'main_block', 'main');
-
-// Get existing value from database
-$database = new database();
-$query = "SELECT display_name,email FROM ".TABLE_PREFIX."users WHERE user_id = '".$admin->get_user_id()."'";
-$results = $database->query($query);
-if($database->is_error()) {
-	$admin->print_error($database->get_error(), 'index.php');
-}
-$details = $results->fetchRow();
-
-// Insert values into form
-$template->set_var('DISPLAY_NAME', $details['display_name']);
-$template->set_var('EMAIL', $details['email']);
-
-// Insert language values
-$template->set_block('main_block', 'language_list_block', 'language_list');
-$result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'language' order by name");
-if($result->numRows() > 0) {
-	while($addon = $result->fetchRow()) {
-		$l_codes[$addon['name']] = $addon['directory'];
-		$l_names[$addon['name']] = entities_to_7bit($addon['name']); // sorting-problem workaround
-	}
-	asort($l_names);
-	foreach($l_names as $l_name=>$v) {
-		// Insert code and name
-		$template->set_var(array(
-								'CODE' => $l_codes[$l_name],
-								'NAME' => $l_name,
-								'FLAG' => THEME_URL.'/images/flags/'.strtolower($l_codes[$l_name]),
-								));
-		// Check if it is selected
-		if(LANGUAGE == $l_codes[$l_name]) {
-			$template->set_var('SELECTED', ' selected="selected"');
-		} else {
-			$template->set_var('SELECTED', '');
-		}
-		$template->parse('language_list', 'language_list_block', true);
-	}
-}
-
-// Insert default timezone values
-require(ADMIN_PATH.'/interface/timezones.php');
-$template->set_block('main_block', 'timezone_list_block', 'timezone_list');
-foreach($TIMEZONES AS $hour_offset => $title) {
-	$template->set_var('VALUE', $hour_offset);
-	$template->set_var('NAME', $title);
-	if($admin->get_timezone() == $hour_offset*60*60) {
-		$template->set_var('SELECTED', ' selected="selected"');
-	} else {
-		$template->set_var('SELECTED', '');
-	}
-	$template->parse('timezone_list', 'timezone_list_block', true);
-}
-
-// Insert date format list
-$user_time = true;
-require(ADMIN_PATH.'/interface/date_formats.php');
-$template->set_block('main_block', 'date_format_list_block', 'date_format_list');
-foreach($DATE_FORMATS AS $format => $title) {
-	$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
-	if($format != 'system_default') {
-		$template->set_var('VALUE', $format);
-	} else {
-		$template->set_var('VALUE', '');
-	}
-	$template->set_var('NAME', $title);
-	if(DATE_FORMAT == $format AND !isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) {
-		$template->set_var('SELECTED', ' selected="selected"');
-	} elseif($format == 'system_default' AND isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) {
-		$template->set_var('SELECTED', ' selected="selected"');
-	} else {
-		$template->set_var('SELECTED', '');
-	}
-	$template->parse('date_format_list', 'date_format_list_block', true);
-}
-
-// Insert time format list
-require(ADMIN_PATH.'/interface/time_formats.php');
-$template->set_block('main_block', 'time_format_list_block', 'time_format_list');
-foreach($TIME_FORMATS AS $format => $title) {
-	$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
-	if($format != 'system_default') {
-		$template->set_var('VALUE', $format);
-	} else {
-		$template->set_var('VALUE', '');
-	}
-	$template->set_var('NAME', $title);
-	if(TIME_FORMAT == $format AND !isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) {
-		$template->set_var('SELECTED', ' selected="selected"');
-	} elseif($format == 'system_default' AND isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) {
-		$template->set_var('SELECTED', ' selected="selected"');
-	} else {
-		$template->set_var('SELECTED', '');
-	}
-	$template->parse('time_format_list', 'time_format_list_block', true);
-}
-
-// Insert language headings
-$template->set_var(array(
-								'HEADING_MY_SETTINGS' => $HEADING['MY_SETTINGS'],
-								'HEADING_MY_EMAIL' => $HEADING['MY_EMAIL'],
-								'HEADING_MY_PASSWORD' => $HEADING['MY_PASSWORD']
-								)
-						);
-// insert urls
-$template->set_var(array(
-								'ADMIN_URL' => ADMIN_URL,
-								'WB_URL' => WB_URL,
-								'WB_PATH' => WB_PATH,
-								'THEME_URL' => THEME_URL
-								)
-						);
-// Insert language text and messages
-$template->set_var(array(
-								'TEXT_SAVE' => $TEXT['SAVE'],
-								'TEXT_RESET' => $TEXT['RESET'],
-								'TEXT_DISPLAY_NAME' => $TEXT['DISPLAY_NAME'],
-								'TEXT_EMAIL' => $TEXT['EMAIL'],
-								'TEXT_LANGUAGE' => $TEXT['LANGUAGE'],
-								'TEXT_TIMEZONE' => $TEXT['TIMEZONE'],
-								'TEXT_DATE_FORMAT' => $TEXT['DATE_FORMAT'],
-								'TEXT_TIME_FORMAT' => $TEXT['TIME_FORMAT'],
-								'TEXT_CURRENT_PASSWORD' => $TEXT['CURRENT_PASSWORD'],
-								'TEXT_NEW_PASSWORD' => $TEXT['NEW_PASSWORD'],
-								'TEXT_RETYPE_NEW_PASSWORD' => $TEXT['RETYPE_NEW_PASSWORD'],
-								'TEXT_PLEASE_SELECT' => $TEXT['PLEASE_SELECT']
-								)
-						);
-
-// Parse template for preferences form
-$template->parse('main', 'main_block', false);
-$template->pparse('output', 'page');
-
-$admin->print_footer();
-
+<?php
+/**
+ *
+ * @category        admin
+ * @package         preferences
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2010, 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 4.4.9 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+// prevent this file from being accessed directly
+//if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
+//Workaround if this is first page (WBAdmin in use)
+
+// put all inside a function to prevent global vars
+function build_page( &$admin, &$database )
+{
+	include_once(WB_PATH.'/framework/functions-utf8.php');
+// Create new template object, assign template file, start main-block
+	$template = new Template( THEME_PATH.'/templates' );
+	$template->set_file( 'page', 'preferences.htt' );
+	$template->set_block( 'page', 'main_block', 'main' );
+// read user-info from table users and assign it to template
+	$sql  = 'SELECT `display_name`, `username`, `email` FROM `'.TABLE_PREFIX.'users` ';
+	$sql .= 'WHERE `user_id` = '.(int)$admin->get_user_id();
+	if( $res_user = $database->query($sql) )
+	{
+		if( $rec_user = $res_user->fetchRow() )
+		{
+			$template->set_var('DISPLAY_NAME', $rec_user['display_name']);
+			$template->set_var('USERNAME',     $rec_user['username']);
+			$template->set_var('EMAIL',        $rec_user['email']);
+			$template->set_var('ADMIN_URL',    ADMIN_URL);
+		}
+	}
+// read available languages from table addons and assign it to the template
+	$sql  = 'SELECT * FROM `'.TABLE_PREFIX.'addons` ';
+	$sql .= 'WHERE `type` = "language" ORDER BY `directory`';
+	if( $res_lang = $database->query($sql) )
+	{
+		$template->set_block('main_block', 'language_list_block', 'language_list');
+		while( $rec_lang = $res_lang->fetchRow() )
+		{
+			$template->set_var('CODE',        $rec_lang['directory']);
+			$template->set_var('NAME',        $rec_lang['name']);
+			$template->set_var('FLAG',        THEME_URL.'/images/flags/'.strtolower($rec_lang['directory']));
+			$template->set_var('SELECTED',    (LANGUAGE == $rec_lang['directory'] ? ' selected="selected"' : '') );
+			$template->parse('language_list', 'language_list_block', true);
+		}
+	}
+// Insert default timezone values
+	include_once( ADMIN_PATH.'/interface/timezones.php' );
+	$template->set_block('main_block', 'timezone_list_block', 'timezone_list');
+	foreach( $TIMEZONES AS $hour_offset => $title )
+	{
+		$template->set_var('VALUE',    $hour_offset);
+		$template->set_var('NAME',     $title);
+		$template->set_var('SELECTED', ($admin->get_timezone() == ($hour_offset * 3600) ? ' selected="selected"' : '') );
+		$template->parse('timezone_list', 'timezone_list_block', true);
+	}
+// Insert date format list
+	$user_time = true;
+	include_once( ADMIN_PATH.'/interface/date_formats.php' );
+	$template->set_block('main_block', 'date_format_list_block', 'date_format_list');
+	foreach( $DATE_FORMATS AS $format => $title )
+	{
+		$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
+		$template->set_var( 'VALUE', ($format != 'system_default' ? $format : 'system_default') );
+		$template->set_var( 'NAME',  $title );
+		if( (DATE_FORMAT == $format AND !isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) OR
+			('system_default' == $format AND isset($_SESSION['USE_DEFAULT_DATE_FORMAT'])) )
+		{
+			$template->set_var('SELECTED', ' selected="selected"');
+		}else {
+			$template->set_var('SELECTED', '');
+		}
+		$template->parse('date_format_list', 'date_format_list_block', true);
+	}
+// Insert time format list
+	include_once( ADMIN_PATH.'/interface/time_formats.php' );
+	$template->set_block('main_block', 'time_format_list_block', 'time_format_list');
+	foreach( $TIME_FORMATS AS $format => $title )
+	{
+		$format = str_replace('|', ' ', $format); // Add's white-spaces (not able to be stored in array key)
+		$template->set_var('VALUE', $format != 'system_default' ? $format : '' );
+		$template->set_var('NAME',  $title);
+		if( (TIME_FORMAT == $format AND !isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) OR
+		    ('system_default' == $format AND isset($_SESSION['USE_DEFAULT_TIME_FORMAT'])) )
+		{
+			$template->set_var('SELECTED', ' selected="selected"');
+		} else {
+			$template->set_var('SELECTED', '');
+		}
+		$template->parse('time_format_list', 'time_format_list_block', true);
+	}
+
+// assign systemvars to template
+	$template->set_var(array( 'ADMIN_URL'  => ADMIN_URL,
+	                          'WB_URL'     => WB_URL,
+                              'WB_PATH'    => WB_PATH,
+                              'THEME_URL'  => THEME_URL,
+		                      'ACTION_URL' => ADMIN_URL.'/preferences/save.php'
+                            )
+                      );
+	$template->set_var('FTAN', $admin->getFTAN());
+	$template->set_var('FORM_NAME', 'preferences_save');
+// assign language vars
+	global $HEADING, $TEXT;
+	$template->set_var(array( 'HEADING_MY_SETTINGS'      => $HEADING['MY_SETTINGS'],
+                              'HEADING_MY_EMAIL'         => $HEADING['MY_EMAIL'],
+                              'HEADING_MY_PASSWORD'      => $HEADING['MY_PASSWORD'],
+                              'TEXT_SAVE'                => $TEXT['SAVE'],
+                              'TEXT_RESET'               => $TEXT['RESET'],
+                              'TEXT_DISPLAY_NAME'        => $TEXT['DISPLAY_NAME'],
+                              'TEXT_USERNAME'            => $TEXT['USERNAME'],
+                              'TEXT_EMAIL'               => $TEXT['EMAIL'],
+                              'TEXT_LANGUAGE'            => $TEXT['LANGUAGE'],
+                              'TEXT_TIMEZONE'            => $TEXT['TIMEZONE'],
+                              'TEXT_DATE_FORMAT'         => $TEXT['DATE_FORMAT'],
+                              'TEXT_TIME_FORMAT'         => $TEXT['TIME_FORMAT'],
+                              'TEXT_CURRENT_PASSWORD'    => $TEXT['CURRENT_PASSWORD'],
+                              'TEXT_NEW_PASSWORD'        => $TEXT['NEW_PASSWORD'],
+                              'TEXT_RETYPE_NEW_PASSWORD' => $TEXT['RETYPE_NEW_PASSWORD'],
+	                          'EMPTY_STRING'             => ''
+                            )
+                      );
+// Parse template for preferences form
+	$template->parse('main', 'main_block', false);
+	$output = $template->finish($template->parse('output', 'page'));
+	return $output;
+}
+// test if valid $admin-object already exists (bit complicated about PHP4 Compatibility)
+if( !(isset($admin) && is_object($admin) && (get_class($admin) == 'admin')) )
+{
+    require( '../../config.php' );
+	require_once( WB_PATH.'/framework/class.admin.php' );
+	$admin = new admin('Preferences');
+}
+echo build_page($admin, $database);
+$admin->print_footer();
+
 ?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/admin/preferences/index.php
___________________________________________________________________
Modified: svn:keywords
## -1 +1,4 ##
-Id
\ No newline at end of property
+Id
+Revision
+HeadURL
+Date
\ No newline at end of property
Index: branches/2.8.x/wb/admin/preferences
===================================================================
--- branches/2.8.x/wb/admin/preferences	(revision 1312)
+++ branches/2.8.x/wb/admin/preferences	(revision 1313)

Property changes on: branches/2.8.x/wb/admin/preferences
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,4 ##
+details.php
+email.php
+index.php
+password.php
Index: branches/2.8.x/wb/framework/class.wb.php
===================================================================
--- branches/2.8.x/wb/framework/class.wb.php	(revision 1312)
+++ branches/2.8.x/wb/framework/class.wb.php	(revision 1313)
@@ -26,11 +26,14 @@
 
 class wb
 {
+
+	public $password_chars = 'a-zA-Z0-9\_\-\!\#\*\+';
 	// General initialization function 
 	// performed when frontend or backend is loaded.
 	function wb() {
 	}
 
+
 	// Check whether a page is visible or not.
 	// This will check page-visibility and user- and group-rights.
 	/* page_is_visible() returns
@@ -278,20 +281,28 @@
  *
  * requirements: an active session must be available
  */
-	public function getFTAN( $asTAG = true)
+	public function getFTAN( $as_tag = true)
 	{
 		if(function_exists('microtime'))
 		{
 			list($usec, $sec) = explode(" ", microtime());
-			$time = ((float)$usec + (float)$sec);
+			$time = (string)((float)$usec + (float)$sec);
 		}else{
-			$time = time();
+			$time = (string)time();
 		}
-		$ftan = md5(((string)$time).$_SERVER['SERVER_ADDR']);
+		$salt  = ( isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : '');
+		$salt .= ( isset($_SERVER['HTTP_ACCEPT_CHARSET']) ? $_SERVER['HTTP_ACCEPT_CHARSET'] : '');
+		$salt .= ( isset($_SERVER['HTTP_ACCEPT_ENCODING']) ? $_SERVER['HTTP_ACCEPT_ENCODING'] : '');
+		$salt .= ( isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : '');
+		$salt .= ( isset($_SERVER['HTTP_CONNECTION']) ? $_SERVER['HTTP_CONNECTION'] : '');
+		$salt .= ( isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '');
+		$salt .= ( isset($_SERVER['SERVER_ADDR']) ? $_SERVER['SERVER_ADDR'] : '');
+		$salt  = ( $salt !== '' ) ? $salt : 'eXtremelyHotTomatoJuice';
+		$ftan = md5($time.$salt);
 		$_SESSION['FTAN'] = $ftan;
 		$ftan0 = 'a'.substr($ftan, -(10 + hexdec(substr($ftan, 1))), 10);
 		$ftan1 = 'a'.substr($ftan, hexdec(substr($ftan, -1)), 10);
-		if($asTAG == true)
+		if($as_tag == true)
 		{
 			return '<input type="hidden" name="'.$ftan0.'" value="'.$ftan1.'" title="" />';
 		}else{
Index: branches/2.8.x/wb/templates/classic_theme/images/clock_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/clock_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/help.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/help.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/hidden_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/hidden_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/home.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/home.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/none_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/none_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/logo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/logo.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/siteadd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/siteadd.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/folder_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/folder_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/keys_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/keys_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/bgtitle.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/bgtitle.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/modify_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/modify_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/menu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/menu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ad.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ad.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ae.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ae.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/af.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/af.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ag.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ag.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ai.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ai.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/al.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/al.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/am.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/am.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/an.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/an.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ao.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ao.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ar.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ar.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/as.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/as.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/at.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/at.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/au.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/au.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/aw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/aw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ax.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ax.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/az.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/az.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/eg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/eg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ee.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ee.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ec.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ec.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/eh.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/eh.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/en.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/en.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/er.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/er.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/es.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/es.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/et.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/et.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/europeanunion.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/europeanunion.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/il.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/il.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/in.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/in.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/io.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/io.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/iq.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/iq.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ir.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ir.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/is.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/is.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/it.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/it.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ie.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ie.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/id.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/id.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ma.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ma.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/md.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/md.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/me.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/me.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mh.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mh.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ml.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ml.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mo.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mp.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mq.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mq.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ms.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ms.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mx.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mx.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/my.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/my.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/mz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/mz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/images/flags/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/images/flags/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic
- * This theme is the WB backend Theme from WB 2.7
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent directory listing
-header('Location: ../../../index.php');
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/qa.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/qa.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/uz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/uz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fam.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fam.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ua.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ua.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ug.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ug.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/um.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/um.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/us.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/us.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/uy.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/uy.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/yt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/yt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ye.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ye.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/by.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/by.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ba.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ba.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bb.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bb.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bd.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/be.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/be.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bh.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bh.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bi.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bj.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bj.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bo.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/br.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/br.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bs.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/bv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/bv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/england.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/england.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fi.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fj.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fj.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fo.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/fr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/fr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/jm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/jm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/jo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/jo.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/jp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/jp.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/nz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/nz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/nu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/nu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/nr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/nr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/np.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/np.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/no.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/no.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/nl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/nl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ni.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ni.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ng.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ng.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/nf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/nf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ne.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ne.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/nc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/nc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/na.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/na.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/rw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/rw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ru.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ru.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/rs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/rs.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ro.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ro.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/re.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/re.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/vu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/vu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/vn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/vn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/vi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/vi.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/vg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/vg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ve.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ve.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/vc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/vc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/va.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/va.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/zw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/zw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/zm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/zm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/za.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/za.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/canada.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/canada.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cd.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ca.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ca.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ch.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ch.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ci.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ci.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ck.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ck.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/co.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/co.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cs.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cx.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cx.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cy.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cy.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/cz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/cz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gy.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gy.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gs.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gq.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gq.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gp.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gi.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gh.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gh.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ge.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ge.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/gd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/gd.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ga.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ga.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ky.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ky.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kp.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/km.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/km.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ki.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ki.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kh.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kh.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/kg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/kg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ke.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ke.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/om.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/om.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sa.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sa.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sb.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sb.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sd.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/se.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/se.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sh.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sh.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/si.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/si.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sj.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sj.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/so.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/so.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/st.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/st.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sy.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sy.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/sz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/sz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/wf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/wf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ws.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ws.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/scotland.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/scotland.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/wales.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/wales.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/da.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/da.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/de.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/de.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/dj.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/dj.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/dm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/dm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/do.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/do.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/dz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/dz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/hu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/hu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ht.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ht.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/hr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/hr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/hn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/hn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/hm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/hm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/hk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/hk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lb.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lb.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/la.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/la.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/li.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/li.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ls.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ls.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lu.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lu.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/lv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/lv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ly.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ly.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pa.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pa.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pe.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pe.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ph.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ph.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/ps.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/ps.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/pw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/pw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/py.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/py.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tc.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/td.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/td.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tf.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tg.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/th.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/th.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tj.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tj.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tk.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tk.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tm.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tn.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tn.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/to.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/to.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tr.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tr.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tt.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tv.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tw.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/flags/tz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/flags/tz.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/background.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/background.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/reload_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/reload_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/view.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/view.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/files/unknown.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/files/unknown.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/files/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/images/files/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/images/files/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: wb_theme
- * This theme is the default WB backend Theme
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent directory listing
-header('Location: ../../../../index.php');
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/files/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/dl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/dl.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/menuo.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/menuo.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/minus_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/minus_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/private_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/private_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/blank.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/blank.gif
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/images/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/images/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic
- * This theme is the WB backend Theme from WB 2.7
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent directory listing
-header('Location: ../../../index.php');
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/deleted_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/deleted_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/clock_red_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/clock_red_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/visible_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/visible_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/clock_del_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/clock_del_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/noclock_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/noclock_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/view_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/view_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/plus_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/plus_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/restore_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/restore_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/delete_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/delete_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/up_folder_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/up_folder_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/up_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/up_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/images/down_16.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/images/down_16.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/access.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/access.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/templates.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/templates.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/admintools.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/admintools.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/pages.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/pages.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/modules.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/modules.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/users.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/users.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/groups.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/groups.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/preferences.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/preferences.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/icons/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/icons/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic
- * This theme is the WB backend Theme from WB 2.7
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent directory listing
-header('Location: ../../../index.php');
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/addons.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/addons.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/languages.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/languages.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/view.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/view.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/settings.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/settings.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/icons/media.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: branches/2.8.x/wb/templates/classic_theme/icons/media.png
___________________________________________________________________
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/templates/addons.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/addons.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/addons.htt	(nonexistent)
@@ -1,68 +0,0 @@
-<!-- BEGIN main_block -->
-<div class="box">
-	{URL_ADVANCED}
-</div>
-
-<table cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
-<tr>
-	<td align="center" valign="top">
-		<!-- BEGIN modules_block -->
-		<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_MODULES} >
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2"><a href="{ADMIN_URL}/modules/index.php"><img src="{THEME_URL}/icons/modules.png" alt="0" /></a></td>
-			<td class="title"><a href="{ADMIN_URL}/modules/index.php">{MODULES}</a></td>
-		</tr>
-		<tr>
-			<td class="description">{MODULES_OVERVIEW}</td>
-		</tr>
-		</table>
-		<!-- END modules_block -->		
-		<!-- BEGIN templates_block -->
-		<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_TEMPLATES} >
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2"><a href="{ADMIN_URL}/templates/index.php"><img src="{THEME_URL}/icons/templates.png" alt="{TEMPLATES}" /></a></td>
-			<td class="title"><a href="{ADMIN_URL}/templates/index.php">{TEMPLATES}</a></td>
-		</tr>
-		<tr>
-			<td class="description">{TEMPLATES_OVERVIEW}</td>
-		</tr>
-		</table>
-		<!-- END templates_block -->
-		<!-- BEGIN languages_block -->
-		<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_LANGUAGES} >
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2"><a href="{ADMIN_URL}/languages/index.php"><img src="{THEME_URL}/icons/languages.png" alt="{LANGUAGES}" /></a></td>
-			<td class="title"><a href="{ADMIN_URL}/languages/index.php">{LANGUAGES}</a></td>
-		</tr>
-		<tr>
-			<td class="description">{LANGUAGES_OVERVIEW}</td>
-		</tr>
-		</table>
-		<!-- END languages_block -->
-		<!-- BEGIN reload_block -->
-		<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_RELOAD} >
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2"><img src="{THEME_URL}/icons/admintools.png" alt="{TXT_ADMIN_SETTINGS}" /></td>
-			<td class="title">{TXT_ADMIN_SETTINGS}</td>
-		</tr>
-		<tr>
-			<td class="description">
-				<form action="{RELOAD_URL}" method="post">
-				{MESSAGE_RELOAD_ADDONS}<br style="margin-bottom: 0.5em" />
-				<input {DISPLAY_MODULES} type="checkbox" name="reload_modules" id="reload_modules" value="true" />
-				<label {DISPLAY_MODULES} for="reload_modules">{MODULES}</label>
-				<input {DISPLAY_TEMPLATES} type="checkbox" name="reload_templates" id="reload_templates" value="true" />
-				<label {DISPLAY_TEMPLATES} for="reload_templates">{TEMPLATES}</label>
-				<input {DISPLAY_LANGUAGES} type="checkbox" name="reload_languages" id="reload_languages" value="true" />
-				<label {DISPLAY_LANGUAGES} for="reload_languages">{LANGUAGES}</label>
-				<input type="submit" name="submit" value="{TEXT_RELOAD}" />
-				</form>
-			</td>
-		</tr>
-		</table>
-		<!-- END reload_block -->
-	</td>
-</tr>
-</table>
-
-<!-- END main_block -->
\ 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 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/footer.htt	(nonexistent)
@@ -1,24 +0,0 @@
-<!-- BEGIN footer_block -->
-	</td>
-</tr>
-</table>
-
-<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
-<tr>
-	<td style="font-size:12px;text-align:center;">
-      <!-- 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.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>
-</table>
-
-<script src="{WB_URL}/include/jquery/jquery-min.js" type="text/javascript"></script>
-<script src="{WB_URL}/include/jquery/jquery-insert.js" type="text/javascript"></script>
-<!--[if lt IE 7]><script type="text/javascript" src="{WB_URL}/include/jquery/plugins/jquery-pngFix.js"></script><![endif]-->
-<script src="{THEME_URL}/jquery/jquery-plugins.js" type="text/javascript"></script>
-{BACKEND_BODY_MODULE_JS}
-</body>
-</html>
-<!-- END footer_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/media_browse.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/media_browse.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/media_browse.htt	(nonexistent)
@@ -1,80 +0,0 @@
-<!-- BEGIN main_block -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>Browse Media</title>
-<link href="{THEME_URL}/media.css" rel="stylesheet" type="text/css" />
-<script type="text/javascript">
-function confirm_link(message, url) {
-	if(confirm(message)) location.href = url;
-}
-</script>
-
-</head>
-<body>
-
-<table cellpadding="4" cellspacing="0" border="0" width="100%" style="border-bottom: 1px solid #35373a; width: 100%;">
-<tr style="background-color: #ECF1F3;">
-	<td width="16" align="center" style="padding-left: 10px;">
-		<a href="{PARENT_DIR_LINK}">
-			<img src="{THEME_URL}/images/up_folder_16.png" border="0" class="{DISPLAY_UP_ARROW}" alt="^" />
-		</a>
-	</td>
-	<td width="50">
-		<a href="{PARENT_DIR_LINK}" class="{DISPLAY_UP_ARROW}">
-			{TEXT_UP}
-		</a>
-	</td>
-	<td align="center">
-		{TEXT_CURRENT_FOLDER}: {MEDIA_DIRECTORY}{CURRENT_DIR}
-	</td>
-	<td width="16">
-		<a href="browse.php?dir={CURRENT_DIR}">
-			<img src="{THEME_URL}/images/reload_16.png" border="0" alt="" />
-		</a>
-	</td>
-	<td width="50">
-		<a href="browse.php?dir={CURRENT_DIR}">
-			{TEXT_RELOAD}
-		</a>
-	</td>
-</tr>
-</table>
-
-<table cellpadding="4" cellspacing="0" border="0" width="100%" class="{DISPLAY_LIST_TABLE}">
-<!-- BEGIN list_block -->
-<tr style="background-color: #{ROW_BG_COLOR};" onmouseover="this.style.backgroundColor = '#F1F8DD'" onmouseout="this.style.backgroundColor = '#{ROW_BG_COLOR}'">
-	<td width="18" style="padding-left: 10px;">
-		<a href="{LINK}" target="{LINK_TARGET}">
-			<img src="{FILETYPE_ICON}" class="{DISPLAY_ICON}" border="0" alt="" />
-		</a>
-	</td>
-	<td>
-		<a href="{LINK}" target="{LINK_TARGET}">
-			{NAME}
-		</a>
-	</td>
-	<td width="85" align="right" class="{DISPLAY_RENAME}">
-		<a href="rename.php?dir={CURRENT_DIR}&id={TEMP_ID}">
-			<img src="{THEME_URL}/images/modify_16.png" alt="" border="0" /> {TEXT_RENAME}
-		</a>
-	</td>
-	<td width="70" style="padding-right: 15px;" align="right" class="{DISPLAY_DELETE}">
-		<a href="#" onclick="javascript: confirm_link('{CONFIRM_DELETE}\n {NAME_SLASHED}', 'delete.php?dir={CURRENT_DIR}&id={TEMP_ID}');">
-			<img src="{THEME_URL}/images/delete_16.png" alt="" border="0" /> {TEXT_DELETE}
-		</a>
-	</td>
-</tr>
-<!-- END list_block -->
-</table>
-
-<font class="{DISPLAY_NONE_FOUND}">
-<br />
-&nbsp; &nbsp; 
-{NONE_FOUND}
-</font>
-
-</body>
-</html>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/users.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/users.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/users.htt	(nonexistent)
@@ -1,37 +0,0 @@
-<!-- BEGIN main_block -->
-
-<form name="users" action="users.php" method="post">
-
-<input type="hidden" name="action" value="delete" />
-
-<table cellpadding="0" cellspacing="0" border="0" width="100%">
-<tr>
-	<td align="left">
-		<h2>{HEADING_MODIFY_DELETE_USER}</h2>
-	</td>
-	<td align="right">
-		<!-- BEGIN manage_groups_block -->
-		<a href="{ADMIN_URL}/groups/index.php">{TEXT_MANAGE_GROUPS}</a>
-		<!-- END manage_groups_block -->
-	</td>
-</tr>
-</table>
-
-<br />
-
-<select name="user_id" style="width: 500px;">
-<!-- BEGIN list_block -->
-	<option value="{VALUE}">{NAME}</option>
-<!-- END list_block -->
-</select>
-
-<input type="submit" name="modify" style="width: 100px;" value="{TEXT_MODIFY}" class="{DISPLAY_MODIFY}" />
-<input type="submit" name="delete" style="width: 100px;" value="{TEXT_DELETE}" onclick="return confirm('{CONFIRM_DELETE}');" class="{DISPLAY_DELETE}" />
-
-</form>
-
-<br />
-
-<h2 style="margin-top: 20px;" class="{DISPLAY_ADD}">{HEADING_ADD_USER}</h2>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/access.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/access.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/access.htt	(nonexistent)
@@ -1,48 +0,0 @@
-<!-- BEGIN main_block -->
-
-<table cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
-<tr>
-	<td align="center" valign="top">
-		<!-- BEGIN users_block -->	
-		<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_USERS} >
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/users/index.php">
-					<img src="{THEME_URL}/icons/users.png" alt="{USERS}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/users/index.php">{USERS}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{USERS_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-		<!-- END users_block -->
-		<!-- BEGIN groups_block -->		
-		<table cellpadding="0" cellspacing="0" border="0" class="section" {DISPLAY_GROUPS} >
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/groups/index.php">
-					<img src="{THEME_URL}/icons/groups.png" alt="{GROUPS}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/groups/index.php">{GROUPS}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{GROUPS_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-		<!-- END groups_block -->
-	</td>
-</tr>
-</table>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/preferences.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/preferences.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/preferences.htt	(nonexistent)
@@ -1,134 +0,0 @@
-<!-- BEGIN main_block -->
-
-<form name="details" action="details.php" method="post">
-
-<h2>{HEADING_MY_SETTINGS}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="160">{TEXT_DISPLAY_NAME}:</td>
-	<td>
-		<input type="text" name="display_name" value="{DISPLAY_NAME}" style="width: 98%;" />
-		<script type="text/javascript">
-		document.details.display_name.focus();
-		</script>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_LANGUAGE}:</td>
-	<td>
-		<select name="language" style="width: 98%;">
-			<!-- BEGIN language_list_block -->
-			<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
-			<!-- END language_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_TIMEZONE}:</td>
-	<td>
-		<select name="timezone" style="width: 98%;">
-			<option value="-20">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN timezone_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END timezone_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_DATE_FORMAT}:</td>
-	<td>
-		<select name="date_format" style="width: 98%;">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN date_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END date_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_TIME_FORMAT}:</td>
-	<td>
-		<select name="time_format" style="width: 98%;">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN time_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END time_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="email" action="email.php" method="post">
-
-<h2>{HEADING_MY_EMAIL}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="160">{TEXT_CURRENT_PASSWORD}:</td>
-	<td>
-		<input type="password" name="current_password" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_EMAIL}:</td>
-	<td>
-		<input type="text" name="email" value="{EMAIL}" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="password" action="password.php" method="post">
-
-<h2 style="margin-top: 20px;">{HEADING_MY_PASSWORD}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="160">{TEXT_CURRENT_PASSWORD}:</td>
-	<td>
-		<input type="password" name="current_password" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td width="160">{TEXT_NEW_PASSWORD}:</td>
-	<td>
-		<input type="password" name="new_password" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td width="160">{TEXT_RETYPE_NEW_PASSWORD}:</td>
-	<td>
-		<input type="password" name="new_password2" style="width: 98%;" />
-	</td>
-</tr>
-
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/media_rename.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/media_rename.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/media_rename.htt	(nonexistent)
@@ -1,58 +0,0 @@
-<!-- BEGIN main_block -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>Rename Media</title>
-<link href="{THEME_URL}/media.css" rel="stylesheet" type="text/css" />
-</head>
-<body>
-
-<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
-<tr>
-	<td class="rename">
-<form name="rename" action="rename2.php" method="post">
-<input type="hidden" name="dir" value="{DIR}" />
-<input type="hidden" name="old_name" value="{FILENAME}" />
-<input type="hidden" name="id" value="{FILE_ID}" />
-
-<table cellpadding="5" cellspacing="0" border="0" width="400" align="center">
-<tr>
-	<td align="center" colspan="2">{TEXT_RENAME} '{FILENAME}' {TEXT_TO}:</td>
-</tr>
-<tr>
-	<td>
-		<input type="text" name="name" style="width: 100%;" />
-		<script type="text/javascript">
-		document.rename.name.focus();
-		</script>
-	</td>
-	<td width="50" class="{DISPlAY_EXTENSION}">
-		<input type="text" name="extension" style="width: 50px;" value="{EXTENSION}" />
-	</td>
-</tr>
-<tr>
-	<td colspan="2">
-		<input type="checkbox" name="overwrite" id="overwrite" value="yes" />
-		<label for="overwrite">
-		{TEXT_OVERWRITE_EXISTING} {TYPE}
-		</label>
-	</td>
-</tr>
-<tr>
-	<td colspan="2">
-		<input type="submit" name="submit" value="{TEXT_RENAME}" style="width: 49%;" />
-		<input type="button" name="cancel" value="{TEXT_CANCEL}" style="width: 49%;" onclick="javascript: window.location = 'browse.php';" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-</td>
-</tr>
-</table>
-
-</body>
-</html>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/languages.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/languages.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/languages.htt	(nonexistent)
@@ -1,76 +0,0 @@
-<!-- BEGIN main_block -->
-
-<div class="box">
-	{URL_MODULES}&nbsp;&nbsp;{URL_TEMPLATES}
-</div>
-
-<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
-
-<h2>{HEADING_INSTALL_LANGUAGE}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<input type="file" name="userfile" size="82%" />
-		<script type="text/javascript">
-		document.install.userfile.focus();
-		</script>
-	</td>
-	<td width="110" align="left">
-		<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-
-</form>
-
-<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
-
-<h2>{HEADING_UNINSTALL_LANGUAGE}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<select name="code" style="width: 97%;">
-		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN language_list_block -->
-			<option value="{VALUE}">{NAME}</option>
-		<!-- END language_list_block -->
-		</select>
-	</td>
-	<td width="110">
-		<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-
-</form>
-
-<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
-
-<h2>{HEADING_LANGUAGE_DETAILS}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<select name="code" style="width: 97%;">
-		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN language_list_block -->
-			<option value="{VALUE}">{NAME}</option>
-		<!-- END language_list_block -->
-		</select>
-	</td>
-	<td width="110">
-		<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/admintools.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/admintools.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/admintools.htt	(nonexistent)
@@ -1,30 +0,0 @@
-<!-- BEGIN main_block -->
-
-<table cellpadding="3" cellspacing="0" border="0" align="center" width="100%" class="tool_table">
-
-<tr class="advanced">
-	<td colspan="3">
-		<a name="administration_tools"></a>
-		<h2>{HEADING_ADMINISTRATION_TOOLS}</h2>
-	</td>
-</tr>
-<tr>
-	<td colspan="3">
-		<ul>
-		<!-- BEGIN tool_list_block -->
-		<li>
-		<a href="{ADMIN_URL}/admintools/tool.php?tool={TOOL_DIR}">{TOOL_NAME}</a>
-		<br />{TOOL_DESCRIPTION}
-		</li>
-		<!-- END tool_list_block -->
-		</ul>
-		{TOOL_LIST}
-	</td>
-	<td>
-		&nbsp;
-	</td>
-	<td>&nbsp;</td>
-</tr>
-</table>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/media.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/media.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/media.htt	(nonexistent)
@@ -1,122 +0,0 @@
-<!-- BEGIN main_block -->
-
-<h2>{HEADING_BROWSE_MEDIA}</h2>
-
-<iframe width="100%" height="320px" align="middle" src="browse.php"></iframe>
-
-<br />
-
-
-
-<form name="create" action="create.php" method="post" class="{DISPLAY_CREATE}">
-
-<br />
-
-<h2>{HEADING_CREATE_FOLDER}</h2>
-
-<table cellpadding="3" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="100">{TEXT_TARGET_FOLDER}:</td>
-	<td>
-		<select name="target" style="width: 100%;">
-			<option value="{MEDIA_DIRECTORY}{HOME_DIRECTORY}" selected="selected">{MEDIA_DIRECTORY}{HOME_DIRECTORY}</option>
-			<!-- BEGIN dir_list_block -->
-				<option value="{NAME}">{NAME}</option>
-			<!-- END dir_list_block -->
-		</select>
-	</td>
-</tr>
-
-</table>
-<table cellpadding="3" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="100">{TEXT_NAME}:</td>
-	<td>
-		<input type="text" name="name" style="width: 100%;" />
-	</td>
-	<td align="right" width="160">
-		<input type="submit" name="submit" value="{TEXT_CREATE_FOLDER}" style="width: 160px;" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="upload" action="upload.php" method="post" enctype="multipart/form-data" class="{DISPLAY_UPLOAD}">
-
-<br />
-
-<h2>{HEADING_UPLOAD_FILES}</h2>
-
-<table cellpadding="3" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="100">{TEXT_TARGET_FOLDER}:</td>
-	<td>
-		<select name="target" style="width: 100%;">
-			<option value="{MEDIA_DIRECTORY}{HOME_DIRECTORY}" selected="selected">{MEDIA_DIRECTORY}{HOME_DIRECTORY}</option>
-			<!-- BEGIN dir_list_block -->
-				<option value="{NAME}">{NAME}</option>
-			<!-- END dir_list_block -->
-		</select>
-	</td>
-</tr>
-</table>
-<table cellpadding="3" cellspacing="0" border="0" align="center" width="100%">
-<tr>
-	<td>
-		<input type="checkbox" name="overwrite" id="overwrite" value="yes" />
-		<label for="overwrite">
-		{TEXT_OVERWRITE_EXISTING} {TEXT_FILES}
-		</label>
-	</td>
-	<td width="160">
-		<input type="submit" name="submit" value="{TEXT_UPLOAD_FILES}" style="width: 160px;" />
-	</td>
-</tr>
-</table>
-<table cellpadding="3" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="50%" align="left">
-		<input type="file" size="42" name="file1" />
-	</td>
-	<td width="50%" align="right">
-		<input type="file" size="42" name="file2" />
-	</td>
-</tr>
-<tr>
-	<td width="50%" align="left">
-		<input type="file" size="42" name="file3" />
-	</td>
-	<td width="50%" align="right">
-		<input type="file" size="42" name="file4" />
-	</td>
-</tr>
-<tr>
-	<td width="50%" align="left">
-		<input type="file" size="42" name="file5" />
-	</td>
-	<td width="50%" align="right">
-		<input type="file" size="42" name="file6" />
-	</td>
-</tr>
-<tr>
-	<td width="50%" align="left">
-		<input type="file" size="42" name="file7" />
-	</td>
-	<td width="50%" align="right">
-		<input type="file" size="42" name="file8" />
-	</td>
-</tr>
-<tr>
-	<td width="50%" align="left">
-		<input type="file" size="42" name="file9" />
-	</td>
-	<td width="50%" align="right">
-		<input type="file" size="42" name="file10" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/warning.html
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/warning.html	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/warning.html	(nonexistent)
@@ -1,48 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-<head>
-<title>Maximum Invalid Login Attemps Exceeded</title>
-<style type="text/css"><!--
-body,td,th {
-	font-family: Verdana, Arial, Helvetica, sans-serif;
-	font-size: 12px;
-	color: #000000;
-}
-body {
-	margin: 0px;
-  background: #A8BCCB url(../images/background.png) ;
-  background-repeat:repeat-x;
-}
-a:link, a:visited, a:active {
-	color: #003366;
-	text-decoration: none;
-}
-a:hover {
-	text-decoration: underline;
-	color: #336699;
-}
-h1 {
-	text-align: center;
-	font-size: 18px;
-	color: #000;
-	text-transform: uppercase;
-}
-hr {
-	height: 1px;
-	color: #336699;
-	background-color: #336699;
-	border: 0;
-}
-div#message {
-	text-align: center;
-}
---></style></head>
-<body>
-
-<div id='message'>
-	<h1>Excessive Invalid Logins</h1>
-	You have attempted to login too many times
-</div>
-
-</body>
-</html>
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/templates.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/templates.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/templates.htt	(nonexistent)
@@ -1,79 +0,0 @@
-<!-- BEGIN main_block -->
-
-<div class="box">
-	{URL_MODULES}&nbsp;&nbsp;{URL_LANGUAGES}
-</div>
-
-<br />
-{CHANGE_TEMPLATE_NOTICE}<br /><br />
-
-<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
-
-<h2>{HEADING_INSTALL_TEMPLATE}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<input type="file" name="userfile" size="82%" />
-		<script type="text/javascript">
-		document.install.userfile.focus();
-		</script>
-	</td>
-	<td width="110" align="left">
-		<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-
-</form>
-
-<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
-
-<h2>{HEADING_UNINSTALL_TEMPLATE}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<select name="file" style="width: 97%;">
-		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN template_list_block -->
-			<option value="{VALUE}">{NAME}</option>
-		<!-- END template_list_block -->
-		</select>
-	</td>
-	<td width="110">
-		<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-
-</form>
-
-<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
-
-<h2>{HEADING_TEMPLATE_DETAILS}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<select name="file" style="width: 97%;">
-		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN template_list_block -->
-			<option value="{VALUE}">{NAME}</option>
-		<!-- END template_list_block -->
-		</select>
-	</td>
-	<td width="110">
-		<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/pages_modify.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/pages_modify.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/pages_modify.htt	(nonexistent)
@@ -1,22 +0,0 @@
-<!-- BEGIN main_block -->
-
-<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom: 10px;">
-<tr style="background-color: #F0F0F0;">
-	<td valign="middle" align="left">
-		<h2>{HEADING_MODIFY_PAGE}</h2>
-	</td>
-	<td align="right">
-		{TEXT_CURRENT_PAGE}:
-		<b>{PAGE_TITLE}</b>
-		- 
-		<a href="{ADMIN_URL}/pages/settings.php?page_id={PAGE_ID}">{TEXT_CHANGE_SETTINGS}</a>
-		<font style="{DISPLAY_MANAGE_SECTIONS}">-</font>
-		<a href="{ADMIN_URL}/pages/sections.php?page_id={PAGE_ID}" style="{DISPLAY_MANAGE_SECTIONS}">{TEXT_MANAGE_SECTIONS}</a>
-		<font style="color: #999999;" class="{CLASS_DISPLAY_MODIFIED}"><br />
-		{LAST_MODIFIED} {MODIFIED_BY} ({MODIFIED_BY_USERNAME}), {MODIFIED_WHEN}
-		</font>
-	</td>
-</tr>
-</table>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/groups.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/groups.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/groups.htt	(nonexistent)
@@ -1,37 +0,0 @@
-<!-- BEGIN main_block -->
-
-<form name="groups" action="groups.php" method="post">
-
-<input type="hidden" name="action" value="delete" />
-
-<table cellpadding="0" cellspacing="0" border="0" width="100%">
-<tr>
-	<td align="left">
-		<h2>{HEADING_MODIFY_DELETE_GROUP}</h2>
-	</td>
-	<td align="right">
-		<!-- BEGIN manage_users_block -->
-		<a href="{ADMIN_URL}/users/index.php">{TEXT_MANAGE_USERS}</a>
-		<!-- END manage_users_block -->
-	</td>
-</tr>
-</table>
-
-<br />
-
-<select name="group_id" style="width: 500px;">
-<!-- BEGIN list_block -->
-	<option value="{VALUE}">{NAME}</option>
-<!-- END list_block -->
-</select>
-
-<input type="submit" name="modify" style="width: 100px;" value="{TEXT_MODIFY}" class="{DISPLAY_MODIFY}" />
-<input type="submit" name="delete" style="width: 100px;" value="{TEXT_DELETE}" onclick="return confirm('{CONFIRM_DELETE}');" class="{DISPLAY_DELETE}" />
-
-</form>
-
-<br />
-
-<h2 class="{DISPLAY_ADD}">{HEADING_ADD_GROUP}</h2>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/settings.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/settings.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/settings.htt	(nonexistent)
@@ -1,625 +0,0 @@
-<!-- BEGIN main_block -->
-
-<form name="settings" action="save.php" method="post">
-<input type="hidden" name="advanced" value="{ADVANCED}" />
-
-<table cellpadding="3" cellspacing="0" border="0" align="center" width="100%" class="settings_table">
-<tr>
-	<td colspan="3">
-		<h2>{HEADING_GENERAL_SETTINGS}</h2>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WEBSITE_TITLE}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="website_title" value="{WEBSITE_TITLE}" />
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WEBSITE_DESCRIPTION}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="website_description" cols="50" rows="3">{WEBSITE_DESCRIPTION}</textarea>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WEBSITE_KEYWORDS}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="website_keywords" cols="50" rows="3" >{WEBSITE_KEYWORDS}</textarea>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WEBSITE_HEADER}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="website_header" cols="50" rows="3">{WEBSITE_HEADER}</textarea>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WEBSITE_FOOTER}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="website_footer" cols="50" rows="3">{WEBSITE_FOOTER}</textarea>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_PAGE_LEVEL_LIMIT}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="page_level_limit">
-		<!-- BEGIN page_level_limit_list_block -->
-			<option value="{NUMBER}"{SELECTED}>{NUMBER}</option>
-		<!-- END page_level_limit_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_PAGE_TRASH}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="page_trash" id="page_trash_disabled" style="width: 14px; height: 14px;" value="disabled"{PAGE_TRASH_DISABLED} />
-		<label for="page_trash_disabled">{TEXT_DISABLED}</label>
-		<input type="radio" name="page_trash" id="page_trash_inline" style="width: 14px; height: 14px;" value="inline"{PAGE_TRASH_INLINE} />
-		<label for="page_trash_inline">{TEXT_INLINE}</label>
-		<div style="margin: 0; padding: 0;{DISPLAY_PAGE_TRASH_SEPARATE}">
-			<input type="radio" name="page_trash" id="page_trash_separate" style="width: 14px; height: 14px;" value="separate"{PAGE_TRASH_SEPARATE} />
-			<label for="page_trash_separate">{TEXT_SEPARATE}</label>
-		</div>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-        <td class="setting_name">{TEXT_PAGE_LANGUAGES}:</td>
-        <td class="setting_value" colspan="2">
-                <input type="radio" name="page_languages" id="page_languages_true" style="width: 14px; height: 14px;" value="true"{PAGE_LANGUAGES_ENABLED} />
-                <label for="page_languages_true">{TEXT_ENABLED}</label>
-                <input type="radio" name="page_languages" id="page_languages_false" style="width: 14px; height: 14px;" value="false"{PAGE_LANGUAGES_DISABLED} />
-                <label for="page_languages_false">{TEXT_DISABLED}</label>
-		</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_MULTIPLE_MENUS}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="multiple_menus" id="multiple_menus_true" style="width: 14px; height: 14px;" value="true"{MULTIPLE_MENUS_ENABLED} />
-		<label for="multiple_menus_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="multiple_menus" id="multiple_menus_false" style="width: 14px; height: 14px;" value="false"{MULTIPLE_MENUS_DISABLED} />
-		<label for="multiple_menus_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_HOME_FOLDERS}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="home_folders" id="home_folders_true" style="width: 14px; height: 14px;" value="true"{HOME_FOLDERS_ENABLED} />
-		<label for="home_folders_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="home_folders" id="home_folders_false" style="width: 14px; height: 14px;" value="false"{HOME_FOLDERS_DISABLED} />
-		<label for="home_folders_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_MANAGE_SECTIONS}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="manage_sections" id="manage_sections_true" style="width: 14px; height: 14px;" value="true"{MANAGE_SECTIONS_ENABLED} />
-		<label for="manage_sections_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="manage_sections" id="manage_sections_false" style="width: 14px; height: 14px;" value="false"{MANAGE_SECTIONS_DISABLED} />
-		<label for="manage_sections_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_SECTION_BLOCKS}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="section_blocks" id="section_blocks_true" style="width: 14px; height: 14px;" value="true"{SECTION_BLOCKS_ENABLED} />
-		<label for="section_blocks_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="section_blocks" id="section_blocks_false" style="width: 14px; height: 14px;" value="false"{SECTION_BLOCKS_DISABLED} />
-		<label for="section_blocks_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_INTRO_PAGE}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="intro_page" id="intro_page_true" style="width: 14px; height: 14px;" value="true"{INTRO_PAGE_ENABLED} />
-		<label for="intro_page_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="intro_page" id="intro_page_false" style="width: 14px; height: 14px;" value="false"{INTRO_PAGE_DISABLED} />
-		<label for="intro_page_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_HOMEPAGE_REDIRECTION}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="homepage_redirection" id="homepage_redirection_true" style="width: 14px; height: 14px;" value="true"{HOMEPAGE_REDIRECTION_ENABLED} />
-		<label for="homepage_redirection_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="homepage_redirection" id="homepage_redirection_false" style="width: 14px; height: 14px;" value="false"{HOMEPAGE_REDIRECTION_DISABLED} />
-		<label for="homepage_redirection_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_SMART_LOGIN}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="smart_login" id="smart_login_true" style="width: 14px; height: 14px;" value="true"{SMART_LOGIN_ENABLED} />
-		<label for="smart_login_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="smart_login" id="smart_login_false" style="width: 14px; height: 14px;" value="false"{SMART_LOGIN_DISABLED} />
-		<label for="smart_login_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_LOGIN}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="frontend_login" id="frontend_login_true" style="width: 14px; height: 14px;" value="true"{PRIVATE_ENABLED} />
-		<label for="frontend_login_true">{TEXT_ENABLED}</label>
-		<input type="radio" name="frontend_login" id="frontend_login_false" style="width: 14px; height: 14px;" value="false"{PRIVATE_DISABLED} />
-		<label for="frontend_login_false">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_REDIRECT_AFTER}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="redirect_timer" value="{REDIRECT_TIMER}" />
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_SIGNUP}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="frontend_signup">
-			<option value="false">{TEXT_DISABLED}</option>
-			<!-- BEGIN group_list_block -->
-				<option value="{ID}" {SELECTED}>{NAME}</option>
-			<!-- END group_list_block -->
-		</select>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_PHP_ERROR_LEVEL}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="er_level">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN error_reporting_list_block -->
-				<option value="{VALUE}"{SELECTED}>{NAME}</option>
-			<!-- END error_reporting_list_block -->
-		</select>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_WYSIWYG_STYLE}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="wysiwyg_style" value="{WYSIWYG_STYLE}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_WYSIWYG_EDITOR}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="wysiwyg_editor">
-		<!-- BEGIN editor_list_block -->
-			<option value="{FILE}"{SELECTED}>{NAME}</option>
-		<!-- END editor_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td align="left" nowrap="nowrap">
-		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
-	</td>
-	<td style="text-align: right;">
-		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
-	</td>
-</tr>
-<tr>
-	<td colspan="3" style="padding-top: 10px;">
-		<h2>{HEADING_DEFAULT_SETTINGS}</h2>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_LANGUAGE}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_language">
-			<!-- BEGIN language_list_block -->
-			<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
-			<!-- END language_list_block -->
-		</select>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_CHARSET}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_charset">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN charset_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END charset_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_TIMEZONE}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_timezone">
-			<option value="0">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN timezone_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END timezone_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_DATE_FORMAT}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_date_format">
-			<option value="M d Y">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN date_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END date_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_TIME_FORMAT}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_time_format">
-			<option value="g:i A">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN time_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END time_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_TEMPLATE}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_template">
-		<!-- BEGIN template_list_block -->
-			<option value="{FILE}"{SELECTED}>{NAME}</option>
-		<!-- END template_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_THEME}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="default_theme">
-		<!-- BEGIN theme_list_block -->
-			<option value="{FILE}"{SELECTED}>{NAME}</option>
-		<!-- END theme_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
-	</td>
-	<td style="text-align: right;">
-		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
-	</td>
-</tr>
-<tr>
-	<td colspan="3" style="padding-top: 10px;">
-		<h2>{HEADING_SEARCH_SETTINGS}</h2>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_VISIBILITY}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="search">
-			<option value="public">{TEXT_PUBLIC}</option>
-			<option value="private" {PRIVATE_SEARCH}>{TEXT_PRIVATE}</option>
-			<option value="registered" {REGISTERED_SEARCH}>{TEXT_REGISTERED}</option>
-			<option value="none" {NONE_SEARCH}>{TEXT_NONE}</option>
-		</select>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_TEMPLATE}:</td>
-	<td class="setting_value" colspan="2">
-		<select name="search_template">
-		<!-- BEGIN search_template_list_block -->
-			<option value="{FILE}"{SELECTED}>{NAME}</option>
-		<!-- END search_template_list_block -->
-		</select>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_HEADER}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="search_header" style="height: 100px;" cols="50" rows="3">{SEARCH_HEADER}</textarea>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_RESULTS_HEADER}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="search_results_header" cols="50" rows="3">{SEARCH_RESULTS_HEADER}</textarea>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_RESULTS_LOOP}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="search_results_loop" cols="50" rows="3">{SEARCH_RESULTS_LOOP}</textarea>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_RESULTS_FOOTER}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="search_results_footer" cols="50" rows="3">{SEARCH_RESULTS_FOOTER}</textarea>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_NO_RESULTS}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="search_no_results" value="{SEARCH_NO_RESULTS}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_FOOTER}:</td>
-	<td class="setting_value" colspan="2">
-		<textarea name="search_footer" cols="50" rows="3">{SEARCH_FOOTER}</textarea>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_MODULE_ORDER}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="search_module_order" value="{SEARCH_MODULE_ORDER}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_MAX_EXCERPT}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="search_max_excerpt" value="{SEARCH_MAX_EXCERPT}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_TIME_LIMIT}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="search_time_limit" value="{SEARCH_TIME_LIMIT}" />
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
-	</td>
-	<td style="text-align: right;">
-		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
-	</td>
-</tr>
-<tr>
-	<td colspan="3" style="padding-top: 10px;">
-		<h2>{HEADING_SERVER_SETTINGS}</h2>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_SERVER_OPERATING_SYSTEM}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="operating_system" id="operating_system_linux" onclick="javascript: change_os('linux');" style="width: 14px; height: 14px;" value="linux"{LINUX_SELECTED} />
-		<label for="operating_system_linux" onclick="javascript: change_os('linux');">{TEXT_LINUX_UNIX_BASED}</label>
-		<input type="radio" name="operating_system" id="operating_system_windows" onclick="javascript: change_os('windows');" style="width: 14px; height: 14px;" value="windows"{WINDOWS_SELECTED} />
-		<label for="operating_system_windows" onclick="javascript: change_os('windows');">{TEXT_WINDOWS}</label>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name"><div id="{BASIC_FILE_PERMS_ID}1" style="margin: 0; padding: 0;">&nbsp;</div></td>
-	<td class="setting_value" colspan="3">
-		<div id="{BASIC_FILE_PERMS_ID}2" style="margin: 0; padding: 0;">
-			<input type="checkbox" name="world_writeable" id="world_writeable" style="width: 14px; height: 14px;" value="true"{WORLD_WRITEABLE_SELECTED} />
-			<label for="world_writeable">
-				{TEXT_WORLD_WRITEABLE_FILE_PERMISSIONS} (777)
-			</label>
-			<br />
-			<font class="note">({WORLD_WRITEABLE_WARNING})</font>
-		</div>
-		<div id="{BASIC_FILE_PERMS_ID}3" style="margin: 0; padding: 0;"></div>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name"><div id="{ADVANCED_FILE_PERMS_ID}1" style="margin: 0; padding: 0;">{TEXT_FILESYSTEM_PERMISSIONS}:</div></td>
-	<td class="setting_value" id="file_mode" align="left">
-		<table cellpadding="2" cellspacing="0" border="0" width="100%" style="border-right: 1px solid #DDDDDD;" id="{ADVANCED_FILE_PERMS_ID}2">
-		<tr>
-			<td colspan="3" style="text-align: center; font-weight: bold;">
-				{TEXT_FILES}:
-			</td>
-		</tr>
-		<tr>
-			<td>{TEXT_USER}:</td>
-			<td>{TEXT_GROUP}:</td>
-			<td>{TEXT_OTHERS}:</td>
-		</tr>
-		<tr>
-			<td width="100" nowrap="nowrap">
-				<input type="checkbox" name="file_u_r" id="file_u_r" value="true"{FILE_U_R_CHECKED} />
-				<label for="file_u_r">{TEXT_READ}</label>
-				<br />
-				<input type="checkbox" name="file_u_w" id="file_u_w" value="true"{FILE_U_W_CHECKED} />
-				<label for="file_u_w">{TEXT_WRITE}</label>
-				<br />
-				<input type="checkbox" name="file_u_e" id="file_u_e" value="true"{FILE_U_E_CHECKED} />
-				<label for="file_u_e">{TEXT_EXECUTE}</label>
-			</td>
-			<td width="100" nowrap="nowrap">
-				<input type="checkbox" name="file_g_r" id="file_g_r" value="true"{FILE_G_R_CHECKED} />
-				<label for="file_g_r">{TEXT_READ}</label>
-				<br />
-				<input type="checkbox" name="file_g_w" id="file_g_w" value="true"{FILE_G_W_CHECKED} />
-				<label for="file_g_w">{TEXT_WRITE}</label>
-				<br />
-				<input type="checkbox" name="file_g_e" id="file_g_e" value="true"{FILE_G_E_CHECKED} />
-				<label for="file_g_e">{TEXT_EXECUTE}</label>
-			</td>
-			<td width="100" nowrap="nowrap">
-				<input type="checkbox" name="file_o_r" id="file_o_r" value="true"{FILE_O_R_CHECKED} />
-				<label for="file_o_r">{TEXT_READ}</label>
-				<br />
-				<input type="checkbox" name="file_o_w" id="file_o_w" value="true"{FILE_O_W_CHECKED} />
-				<label for="file_o_w">{TEXT_WRITE}</label>
-				<br />
-				<input type="checkbox" name="file_o_e" id="file_o_e" value="true"{FILE_O_E_CHECKED} />
-				<label for="file_o_e">{TEXT_EXECUTE}</label>
-			</td>
-		</tr>
-		</table>
-	</td>
-	<td class="setting_value" id="dir_mode" style="text-align: right;">
-		<table cellpadding="2" cellspacing="0" border="0" width="100%" id="{ADVANCED_FILE_PERMS_ID}3">
-		<tr>
-			<td colspan="3" style="text-align: center; font-weight: bold;">
-				{TEXT_DIRECTORIES}:
-			</td>
-		</tr>
-		<tr>
-			<td>{TEXT_USER}:</td>
-			<td>{TEXT_GROUP}:</td>
-			<td>{TEXT_OTHERS}:</td>
-		</tr>
-		<tr>
-			<td width="100" nowrap="nowrap">
-				<input type="checkbox" name="dir_u_r" id="dir_u_r" value="true"{DIR_U_R_CHECKED} />
-				<label for="dir_u_r">{TEXT_READ}</label>
-				<br />
-				<input type="checkbox" name="dir_u_w" id="dir_u_w" value="true"{DIR_U_W_CHECKED} />
-				<label for="dir_u_w">{TEXT_WRITE}</label>
-				<br />
-				<input type="checkbox" name="dir_u_e" id="dir_u_e" value="true"{DIR_U_E_CHECKED} />
-				<label for="dir_u_e">{TEXT_EXECUTE}</label>
-			</td>
-			<td width="100" nowrap="nowrap">
-				<input type="checkbox" name="dir_g_r" id="dir_g_r" value="true"{DIR_G_R_CHECKED} />
-				<label for="dir_g_r">{TEXT_READ}</label>
-				<br />
-				<input type="checkbox" name="dir_g_w" id="dir_g_w" value="true"{DIR_G_W_CHECKED} />
-				<label for="dir_g_w">{TEXT_WRITE}</label>
-				<br />
-				<input type="checkbox" name="dir_g_e" id="dir_g_e" value="true"{DIR_G_E_CHECKED} />
-				<label for="dir_g_e">{TEXT_EXECUTE}</label>
-			</td>
-			<td width="100" nowrap="nowrap">
-				<input type="checkbox" name="dir_o_r" id="dir_o_r" value="true"{DIR_O_R_CHECKED} />
-				<label for="dir_o_r">{TEXT_READ}</label>
-				<br />
-				<input type="checkbox" name="dir_o_w" id="dir_o_w" value="true"{DIR_O_W_CHECKED} />
-				<label for="dir_o_w">{TEXT_WRITE}</label>
-				<br />
-				<input type="checkbox" name="dir_o_e" id="dir_o_e" value="true"{DIR_O_E_CHECKED} />
-				<label for="dir_o_e">{TEXT_EXECUTE}</label>
-			</td>
-		</tr>
-		</table>
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_PAGES_DIRECTORY}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="pages_directory" value="{PAGES_DIRECTORY}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_MEDIA_DIRECTORY}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="media_directory" value="{MEDIA_DIRECTORY}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_PAGE_EXTENSION}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="page_extension" value="{PAGE_EXTENSION}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_PAGE_SPACER}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="page_spacer" value="{PAGE_SPACER}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_RENAME_FILES_ON_UPLOAD}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="rename_files_on_upload" value="{RENAME_FILES_ON_UPLOAD}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_SESSION_IDENTIFIER}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="app_name" value="{APP_NAME}" />
-	</td>
-</tr>
-<tr{DISPLAY_ADVANCED}>
-	<td class="setting_name">{TEXT_SEC_ANCHOR}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" name="sec_anchor" value="{SEC_ANCHOR}" />
-	</td>
-</tr>
-<!-- BASIC MAILER SETTINGS -->
-<tr>
-	<td colspan="3" style="padding-top: 10px;">
-		<h2>{HEADING_WBMAILER_SETTINGS}</h2>
-		<p style="line-height: 1.4em; margin-top: 0;">{TEXT_WBMAILER_DEFAULT_SETTINGS_NOTICE}</p>
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WBMAILER_DEFAULT_SENDER_MAIL}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" style="width: 250px" name="server_email" value="{SERVER_EMAIL}" />
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WBMAILER_DEFAULT_SENDER_NAME}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" style="width: 250px" name="wbmailer_default_sendername" value="{WBMAILER_DEFAULT_SENDERNAME}" />
-	</td>
-</tr>
-<tr>
-	<td class="setting_name">{TEXT_WBMAILER_FUNCTION}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="radio" name="wbmailer_routine" id="wbmailer_routine_phpmail" onclick="javascript: change_wbmailer('phpmail');" style="width: 14px; height: 14px;" value="phpmail"{PHPMAIL_SELECTED} />
-		<label for="wbmailer_routine_phpmail" onclick="javascript: change_wbmailer('phpmail');">{TEXT_WBMAILER_PHP}</label>
-		<input type="radio" name="wbmailer_routine" id="wbmailer_routine_smtp" onclick="javascript: change_wbmailer('smtp');" style="width: 14px; height: 14px;" value="smtp"{SMTPMAIL_SELECTED} />
-		<label for="wbmailer_routine_smtp" onclick="javascript: change_wbmailer('smtp');">{TEXT_WBMAILER_SMTP}</label>
-	</td>
-</tr>
-<!-- MORE ADVANCED SMTP MAILER SETTINGS -->
-<tr id="row_wbmailer_smtp_settings"{SMTP_VISIBILITY}>
-	<td colspan="3" style="padding-top: 10px;">
-			<p style="line-height: 1.4em; margin-top: 0;">{TEXT_WBMAILER_NOTICE}</p>
-	</td>
-</tr>
-<tr id="row_wbmailer_smtp_host"{SMTP_VISIBILITY}>
-	<td class="setting_name">{TEXT_WBMAILER_SMTP_HOST}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" style="width: 250px" name="wbmailer_smtp_host" value="{WBMAILER_SMTP_HOST}" />
-	</td>
-</tr>
-<tr id="row_wbmailer_smtp_auth_mode"{SMTP_VISIBILITY}>
-	<td class="setting_name">{TEXT_WBMAILER_SMTP_AUTH}:</td>
-	<td class="setting_value" colspan="3">
-		<input type="checkbox" name="wbmailer_smtp_auth" id="wbmailer_smtp_auth" onclick="javascript: toggle_wbmailer_auth();" style="width: 14px; height: 14px;" value="true"{SMTP_AUTH_SELECTED} />
-		<label for="wbmailer_smtp_auth" onclick="javascript: toggle_wbmailer_auth(this.value);">({TEXT_WBMAILER_SMTP_AUTH_NOTICE})</label>
-	</td>
-</tr>
-<tr id="row_wbmailer_smtp_username"{SMTP_VISIBILITY_AUTH}>
-	<td class="setting_name">{TEXT_WBMAILER_SMTP_USERNAME}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="text" style="width: 250px" name="wbmailer_smtp_username" value="{WBMAILER_SMTP_USERNAME}" />
-	</td>
-</tr>
-<tr id="row_wbmailer_smtp_password"{SMTP_VISIBILITY_AUTH}>
-	<td class="setting_name">{TEXT_WBMAILER_SMTP_PASSWORD}:</td>
-	<td class="setting_value" colspan="2">
-		<input type="password" style="width: 250px" name="wbmailer_smtp_password" value="{WBMAILER_SMTP_PASSWORD}" />
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" class="save" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" class="reset" />
-	</td>
-	<td style="text-align: right;">
-		<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
-	</td>
-</tr>
-</table>
-
-</form>
-
-<hr size="1" />
-
-<button title="{MODE_SWITCH_WARNING}" onclick="window.location = '{ADVANCED_LINK}'; return false;" class="{DISPLAY_ADVANCED_BUTTON}">{ADVANCED_BUTTON}</button>
-<br />
-<font class="{DISPLAY_ADVANCED_BUTTON}">
-{MODE_SWITCH_WARNING}
-</font>
-<script src="{ADMIN_URL}/settings/setting.js" type="text/javascript"></script>
-<!-- END main_block -->
Index: branches/2.8.x/wb/templates/classic_theme/templates/login_forgot.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/login_forgot.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/login_forgot.htt	(nonexistent)
@@ -1,77 +0,0 @@
-<!-- BEGIN main_block -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>Retrieve Login Details</title>
-<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
-<meta http-equiv="content-language" content="{LANGUAGE}" />
-<meta name="description" content="Retrieve Login Details" />
-<meta name="keywords" content="Retrieve Login Details" />
-<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
-</head>
-<body onload="document.forgot_pass.email.focus();">
-
-<table cellpadding="0" cellspacing="0" border="0" width="770" align="center">
-<tr>
-	<td width="60" valign="top">
-		<img src="{THEME_URL}/images/logo.png" alt="Logo" />
-	</td>
-	<td width="5">&nbsp;</td>
-	<td style="font-size: 20px;">
-		<font style="color: #FFF;">{SECTION_FORGOT}</font>
-	</td>
-</tr>
-</table>
-
-<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;" class="container">
-<tr>
-	<td class="content">
-	
-	<form name="forgot_pass" action="{ACTION_URL}" method="post">
-	<input type="hidden" name="url" value="{URL}" />
-		<table cellpadding="5" cellspacing="0" border="0" align="center" width="500">
-		<tr>
-			<td height="40" align="center" style="color: #{MESSAGE_COLOR};" colspan="2">{MESSAGE}</td>
-		</tr>
-		<tr style="{DISPLAY_FORM}">
-			<td height="10" colspan="2"></td>
-		</tr>
-		<tr style="{DISPLAY_FORM}">
-			<td width="165" height="30" align="right">{TEXT_EMAIL}:</td>
-			<td><input type="text" maxlength="255" name="email" value="{EMAIL}" style="width: 180px;" /></td>
-		</tr>
-		<tr style="{DISPLAY_FORM}" height="30">
-			<td>&nbsp;</td>
-			<td><input type="submit" name="submit" value="{TEXT_SEND_DETAILS}" style="width: 180px; font-size: 10px; text-transform: uppercase; color: #003366; border: 1px solid #336699; background-color: #DDDDDD; padding: 3px;"></td>
-		</tr>
-		<tr style="{DISPLAY_FORM}">
-			<td height="10" colspan="2"></td>
-		</tr>
-		</table>
-	</form>
-	
-	<center>
-		<a href="{LOGIN_URL}">{TEXT_NEED_TO_LOGIN}</a>
-		<br />
-		<br />
-		<a href="{WB_URL}">{TEXT_HOME}</a>
-	</center>
-
-	</td>
-</tr>
-</table>
-
-<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
-<tr>
-	<td style="font-size:12px;text-align:center;">
-      <!-- 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.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>
-</table>
-
-</body>
-</html>
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/groups_form.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/groups_form.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/groups_form.htt	(nonexistent)
@@ -1,293 +0,0 @@
-<!-- BEGIN main_block -->
-
-<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_GROUP}</h2>
-
-<form name="group" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}">
-<input type="hidden" name="advanced" value="{ADVANCED}" />
-<input type="hidden" name="group_id" value="{GROUP_ID}" />
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="150">{TEXT_NAME}:</td>
-	<td>
-		<input type="text" name="group_name" maxlength="255" value="{GROUP_NAME}" style="width: 100%" />
-	</td>
-</tr>
-</table>
-<table cellpadding="5" cellspacing="0" border="0" width="100%" style="{DISPLAY_BASIC}">
-<tr>
-	<td width="150" valign="top">{TEXT_SYSTEM_PERMISSIONS}:</td>
-	<td>
-		<table cellpadding="0" cellspacing="0" width="100%" border="0">
-		<tr>
-			<td>
-				<input type="checkbox" name="pages" id="pages" value="1" {pages_checked} />
-				<label for="pages">{SECTION_PAGES}</label>
-			</td>
-			<td>
-				<input type="checkbox" name="media" id="media" value="1" {media_checked} />
-				<label for="media">{SECTION_MEDIA}</label>
-			</td>
-			<td>
-				<input type="checkbox" name="modules" id="modules" value="1" {modules_checked} />
-				<label for="modules">{SECTION_MODULES}</label>
-			</td>
-			<td>
-				<input type="checkbox" name="templates" id="templates" value="1" {templates_checked} />
-				<label for="templates">{SECTION_TEMPLATES}</label>
-			</td>
-		</tr>
-		<tr>
-			<td>
-				<input type="checkbox" name="languages" id="languages" value="1" {languages_checked} />
-				<label for="languages">{SECTION_LANGUAGES}</label>
-			</td>
-			<td>		
-				<input type="checkbox" name="settings" id="settings" value="1" {settings_checked} />
-				<label for="settings">{SECTION_SETTINGS}</label>
-			</td>
-			<td>
-				<input type="checkbox" name="users" id="users" value="1" {users_checked} />
-				<label for="users">{SECTION_USERS}</label>
-			</td>
-			<td>
-				<input type="checkbox" name="groups" id="groups" value="1" {groups_checked} />
-				<label for="groups">{SECTION_GROUPS}</label>
-			</td>
-		</tr>
-		<tr>
-			<td>
-				<input type="checkbox" name="admintools" id="admintools" value="1" {admintools_checked} />
-				<label for="admintools">{SECTION_ADMINTOOLS}</label>
-			</td>
-			<td>&nbsp;</td>
-			<td>&nbsp;</td>
-			<td>&nbsp;</td>
-		</tr>
-		</table>
-	</td>
-</tr>
-</table>
-<table cellpadding="5" cellspacing="0" border="0" width="100%" style="{DISPLAY_ADVANCED}">
-<tr>
-	<td valign="top">{TEXT_SYSTEM_PERMISSIONS}:</td>
-	<td align="left">
-
-
-<table cellpadding="3" cellspacing="0" border="0" width="400">
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_PAGES}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="pages_view" id="pages_view" type="checkbox" value="1" {pages_view_checked} /></td>
-	<td><label for="pages_view">{TEXT_VIEW}</label></td>
-	<td><input name="pages_add" id="pages_add" type="checkbox" value="1" {pages_add_checked} /></td>
-	<td>
-		<label for="pages_add">{TEXT_ADD}</label>
-		&nbsp;
-		<input name="pages_add_l0" id="pages_add_l0" type="checkbox" value="1" {pages_add_l0_checked} />
-		<label for="pages_add_l0">{TEXT_LEVEL} 0</label>)
-	</td>
-</tr>
-<tr>
-	<td><input name="pages_settings" id="pages_settings" type="checkbox" value="1" {pages_settings_checked} /></td>
-	<td><label for="pages_settings">{TEXT_MODIFY_SETTINGS}</label></td>
-	<td><input name="pages_modify" id="pages_modify" type="checkbox" value="1" {pages_modify_checked} /></td>
-	<td><label for="pages_modify">{TEXT_MODIFY_CONTENT}</label></td>
-</tr>
-<tr>
-	<td><input name="pages_intro" id="pages_intro" type="checkbox" value="1" {pages_intro_checked} /></td>
-	<td><label for="pages_intro">{HEADING_MODIFY_INTRO_PAGE}</label></td>
-	<td><input name="pages_delete" id="pages_delete" type="checkbox" value="1" {pages_delete_checked} /></td>
-	<td><label for="pages_delete">{TEXT_DELETE}</label></td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_MEDIA}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="media_view" id="media_view" type="checkbox" value="1" {media_view_checked} /></td>
-	<td><label for="media_view">{TEXT_VIEW}</label></td>
-	<td><input name="media_upload" id="media_upload" type="checkbox" value="1" {media_upload_checked} /></td>
-	<td><label for="media_upload">{TEXT_UPLOAD_FILES}</label></td>
-</tr>
-<tr>
-	<td><input name="media_rename" id="media_rename" type="checkbox" value="1" {media_rename_checked} /></td>
-	<td><label for="media_rename">{TEXT_RENAME}</label></td>
-	<td><input name="media_delete" id="media_delete" type="checkbox" value="1" {media_delete_checked} /></td>
-	<td><label for="media_delete">{TEXT_DELETE}</label></td>
-</tr>
-<tr>
-	<td><input name="media_create" id="media_create" type="checkbox" value="1" {media_create_checked} /></td>
-	<td><label for="media_create">{TEXT_CREATE_FOLDER}</label></td>
-	<td>&nbsp;</td>
-	<td>&nbsp;</td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_MODULES}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="modules_view" id="modules_view" type="checkbox" value="1" {modules_view_checked} /></td>
-	<td><label for="modules_view">{TEXT_VIEW}</label></td>
-	<td><input name="modules_install" id="modules_install" type="checkbox" value="1" {modules_install_checked} /></td>
-	<td><label for="modules_install">{TEXT_ADD}</label></td>
-</tr>
-<tr>
-	<td><input name="modules_uninstall" id="modules_uninstall" type="checkbox" value="1" {modules_uninstall_checked} /></td>
-	<td><label for="modules_uninstall">{TEXT_DELETE}</label></td>
-	<td>&nbsp;</td>
-	<td>&nbsp;</td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_TEMPLATES}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="templates_view" id="templates_view" type="checkbox" value="1" {templates_view_checked} /></td>
-	<td><label for="templates_view">{TEXT_VIEW}</label></td>
-	<td><input name="templates_install" id="templates_install" type="checkbox" value="1" {templates_install_checked} /></td>
-	<td><label for="templates_install">{TEXT_ADD}</label></td>
-</tr>
-<tr>
-	<td><input name="templates_uninstall" id="templates_uninstall" type="checkbox" value="1" {templates_uninstall_checked} /></td>
-	<td><label for="templates_uninstall">{TEXT_DELETE}</label></td>
-	<td>&nbsp;</td>
-	<td>&nbsp;</td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_LANGUAGES}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="languages_view" id="languages_view" type="checkbox" value="1" {languages_view_checked} /></td>
-	<td><label for="languages_view">{TEXT_VIEW}</label></td>
-	<td><input name="languages_install" id="languages_install" type="checkbox" value="1" {languages_install_checked} /></td>
-	<td><label for="languages_install">{TEXT_ADD}</label></td>
-</tr>
-<tr>
-	<td><input name="languages_uninstall" id="languages_uninstall" type="checkbox" value="1" {languages_uninstall_checked} /></td>
-	<td><label for="languages_uninstall">{TEXT_DELETE}</label></td>
-	<td>&nbsp;</td>
-	<td>&nbsp;</td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_SETTINGS}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="settings_basic" id="settings_basic" type="checkbox" value="1" {settings_basic_checked} /></td>
-	<td><label for="settings_basic">{TEXT_BASIC}</label></td>
-	<td><input name="settings_advanced" id="settings_advanced" type="checkbox" value="1" {settings_advanced_checked} /></td>
-	<td><label for="settings_advanced">{TEXT_ADVANCED}</label></td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_USERS}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="users_view" id="users_view" type="checkbox" value="1" {users_view_checked} /></td>
-	<td><label for="users_view">{TEXT_VIEW}</label></td>
-	<td><input name="users_add" id="users_add" type="checkbox" value="1" {users_add_checked} /></td>
-	<td><label for="users_add">{TEXT_ADD}</label></td>
-</tr>
-<tr>
-	<td><input name="users_modify" id="users_modify" type="checkbox" value="1" {users_modify_checked} /></td>
-	<td><label for="users_modify">{TEXT_MODIFY}</label></td>
-	<td><input name="users_delete" id="users_delete" type="checkbox" value="1" {users_delete_checked} /></td>
-	<td><label for="users_delete">{TEXT_DELETE}</label></td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_GROUPS}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="groups_view" id="groups_view" type="checkbox" value="1" {groups_view_checked} /></td>
-	<td><label for="groups_view">{TEXT_VIEW}</label></td>
-	<td><input name="groups_add" id="groups_add" type="checkbox" value="1" {groups_add_checked} /></td>
-	<td><label for="groups_add">{TEXT_ADD}</label></td>
-</tr>
-<tr>
-	<td><input name="groups_modify" id="groups_modify" type="checkbox" value="1" {groups_modify_checked} /></td>
-	<td><label for="groups_modify">{TEXT_MODIFY}</label></td>
-	<td><input name="groups_delete" id="groups_delete" type="checkbox" value="1" {groups_delete_checked} /></td>
-	<td><label for="groups_delete">{TEXT_DELETE}</label></td>
-</tr>
-<tr>
-	<td colspan="4">
-		<h3>{SECTION_ADMINTOOLS}</h3>
-	</td>
-</tr>
-<tr>
-	<td><input name="admintools_settings" id="admintools_settings" type="checkbox" value="1" {admintools_settings_checked} /></td>
-	<td><label for="admintools_settings">{TEXT_MODIFY_SETTINGS}</label></td>
-	<td>&nbsp;</td>
-	<td>&nbsp;</td>
-</tr>
-</table>
-
-
-	</td>
-</tr>
-</table>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%" style="padding-top: 5px; padding-bottom: 5px;">
-<tr>
-	<td valign="top" align="left" width="150">
-	{TEXT_MODULE_PERMISSIONS}:
-	</td>
-	<td valign="top" align="left">
-		<ul style="margin: 0; padding: 0; list-style: none;">
-			<!-- BEGIN module_list_block -->
-			<li>
-				<input type="checkbox" name="module_permissions[]" id="m_{VALUE}" value="{VALUE}" {CHECKED} />
-				<label for="m_{VALUE}">{NAME}</label>
-			</li>
-			<!-- END module_list_block -->
-		</ul>
-	</td>
-	<td valign="top" align="left" width="150">
-	{TEXT_TEMPLATE_PERMISSIONS}:
-	</td>
-	<td valign="top" align="left">
-		<ul style="margin: 0; padding: 0; list-style: none;">
-			<!-- BEGIN template_list_block -->
-			<li>
-				<input type="checkbox" name="template_permissions[]" id="t_{VALUE}" value="{VALUE}" {CHECKED} />
-				<label for="t_{VALUE}">{NAME}</label>
-			</li>
-			<!-- END template_list_block -->
-		</ul>
-	</td>
-</tr>
-
-<tr>
-	<td colspan="2"><input type="submit" name="submit" value="{SUBMIT_TITLE}" /></td>
-    <td colspan="2" align="right"><input type="reset" name="reset" value="{TEXT_RESET}" /></td>
-</tr>
-</table>
-</form>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td align="center">
-	<form name="advanced" action="{ADVANCED_ACTION}" method="post">
-        <input type="hidden" name="group_id" value="{GROUP_ID}" />
-        <input type="hidden" name="action" value="modify" />
-        <input type="submit" name="advanced" onclick="window.location = '{ADVANCED_LINK}';" value="{ADVANCED_BUTTON}" />
-    </form>
-	</td>
-</tr>
-</table>
-
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/success.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/success.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/success.htt	(nonexistent)
@@ -1,16 +0,0 @@
-<!-- BEGIN main_block -->
-<center>
-	
-	{MESSAGE}
-	
-	<script type="text/javascript">
-		setTimeout("location.href='{REDIRECT}'", {REDIRECT_TIMER});
-	</script>
-	
-	<noscript>
-		<br /><br />
-		<a href="{REDIRECT}">{NEXT}</a>
-	</noscript>
-	
-</center>
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/languages_details.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/languages_details.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/languages_details.htt	(nonexistent)
@@ -1,32 +0,0 @@
-<!-- BEGIN main_block -->
-
-<h2>{HEADING_LANGUAGE_DETAILS}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0">
-<tr>
-	<td width="100">{TEXT_NAME}:</td>
-	<td>{NAME}</td>
-</tr>
-<tr>
-	<td>{TEXT_CODE}:</td>
-	<td>{CODE}</td>
-</tr>
-<tr>
-	<td>{TEXT_AUTHOR}:</td>
-	<td>{AUTHOR}</td>
-</tr>
-<tr>
-	<td>{TEXT_VERSION}:</td>
-	<td>{VERSION}</td>
-</tr>
-<tr>
-	<td>{TEXT_DESIGNED_FOR}:</td>
-	<td>Website Baker {DESIGNED_FOR}</td>
-</tr>
-</table>
-
-<br />
-
-<button onclick="window.location = 'index.php';">{TEXT_BACK}</button>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/pages_sections.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/pages_sections.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/pages_sections.htt	(nonexistent)
@@ -1,118 +0,0 @@
-<!-- BEGIN main_block -->
-        <div class="jsadmin jcalendar hide"></div>
-        <table cellpadding="0" cellspacing="0" class="sections_header">
-            <tr>
-                <td valign="middle" align="left">
-                    <h2>{HEADING_MANAGE_SECTIONS}</h2>
-                </td>
-                <td>ID: {PAGE_ID}</td>
-                <td align="right">{TEXT_CURRENT_PAGE}: <b>{PAGE_TITLE}</b>
-                    -
-                    <a href="{ADMIN_URL}/pages/modify.php?page_id={PAGE_ID}">{HEADING_MODIFY_PAGE}</a>
-                    -
-                    <a href="{ADMIN_URL}/pages/settings.php?page_id={PAGE_ID}">{TEXT_CHANGE_SETTINGS}</a>
-                </td>
-            </tr>
-        </table>
-
-        <form name="section_properties" action="{ADMIN_URL}/pages/sections_save.php?page_id={VAR_PAGE_ID}" method="post">
-        <table cellpadding="5" cellspacing="0" align="center" border="0" width="100%">
-                <tr class="sections_list">
-                	<td valign="middle" width="{NAME_SIZE}">{TEXT_TYPE}:</td>
-                	<td {STYLE_DISPLAY_SECTION_BLOCK}>{TEXT_BLOCK}:</td>
-                	<td class="header_list_pubdate_start">{TEXT_PUBL_START_DATE}:</td>
-                	<td class="header_list_pubdate_end">{TEXT_PUBL_END_DATE}:</td>
-                	<td class="header_list_sections_actions"  colspan="3">{TEXT_ACTIONS}:</td>
-                    <td class="header_list_section_id">{TEXT_SID}</td>
-                    <td valign="middle" align="left"{DISPLAY_DEBUG}>{TEXT_PID}</td>
-                </tr>
-<!-- BEGIN section_block -->
-            	<tr onmouseover="this.style.backgroundColor = '#F1F8DD'" onmouseout="this.style.backgroundColor = '#FFF'">
-    				<td style="display: none;">
-                      <input type="hidden" name="page_id" value="{VAR_PAGE_ID}"  />
-                      <input type="hidden" name="section_id" value="{VAR_SECTION_ID}"  />
-                      {VAR_SECTION_ID}
-                    </td>
-
-                    <td valign="middle" width="{NAME_SIZE}">{LINK_MODIFY_URL_VAR_MODUL_NAME}</td>
-
-                    <td valign="middle" class="{INPUT_ATTRIBUTE}"{STYLE_DISPLAY_SECTION_BLOCK}>
-                    	<select name="block{VAR_SECTION_ID}" class="input_narrow">
-                        {SET_NONE_DISPLAY_OPTION}
-                    	<!-- BEGIN block_block -->
-                    		<option value="{VALUE}"{SELECTED}>{NAME}</option>
-                    	<!-- END block_block -->
-                    	</select>
-                    </td>
-
-                    <td valign="middle" nowrap="nowrap" width="120"><input type="text" id="start_date{VAR_SECTION_ID}" name="start_date{VAR_SECTION_ID}" value="{VALUE_PUBL_START}" class="input_normal" />
-                        <img src="{THEME_URL}/images/{CLOCK_16_PNG}" id="trigger_start{VAR_SECTION_ID}" style="cursor: pointer;" title="{TEXT_CALENDAR}" alt="start"  />
-                        <img src="{THEME_URL}/images/{CLOCK_DEL_16_PNG}" style="cursor: pointer;" alt="del" title="{TEXT_DELETE_DATE}" onclick="document.section_properties.start_date{VAR_SECTION_ID}.value=''" />
-                    </td>
-
-                    <td valign="middle" nowrap="nowrap" width="120"><input type="text" id="end_date{VAR_SECTION_ID}" name="end_date{VAR_SECTION_ID}" value="{VALUE_PUBL_END}" class="input_narrow" />
-                        <img src="{THEME_URL}/images/{CLOCK_16_PNG}" id="trigger_stop{VAR_SECTION_ID}" alt="end" style="cursor: pointer;" title="{TEXT_CALENDAR}"  />
-                        <img src="{THEME_URL}/images/{CLOCK_DEL_16_PNG}" style="cursor: pointer;" alt="del" title="{TEXT_DELETE_DATE}" onclick="document.section_properties.end_date{VAR_SECTION_ID}.value=''" />
-                    </td>
-
-                    <td valign="middle" width="20">
-                        {VAR_MOVE_UP_URL}
-                    </td>
-
-                    <td valign="middle"  width="20">
-                        {VAR_MOVE_DOWN_URL}
-                    </td>
-
-                    <td valign="middle" width="20">
-                        <a href="javascript: confirm_link('{TEXT_ARE_YOU_SURE}', '{ADMIN_URL}/pages/sections.php?page_id={VAR_PAGE_ID}&amp;section_id={VAR_SECTION_ID}');">
-                        <img src="{THEME_URL}/images/{DELETE_16_PNG}" alt="X" />
-                        </a>
-                    </td>
-                    <td valign="middle" align="right">
-                       {VAR_SECTION_ID}
-                    </td>
-                    <td valign="middle" align="right"{DISPLAY_DEBUG}>
-                       {POSITION}
-                    </td>
-                </tr>
-<!-- END section_block -->
-                <tr>
-                    <td valign="middle" align="right" colspan="{DEBUG_COLSPAN_SIZE}"><input type="submit" name="save" value="{TEXT_SAVE}" class="input_medium" /></td>
-    	        </tr>
-	    </table>
-    </form>
-
-	<h2>{TEXT_ADD_SECTION}</h2>
-	<form name="add" action="{ADMIN_URL}/pages/sections.php?page_id={VAR_PAGE_ID}" method="post">
-        <input type="hidden" name="page_id" value="{VAR_PAGE_ID}"  />
-    	<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%">
-    	<tr>
-    		<td width="100%">
-    			<select name="module" class="input_full">
-                <!-- BEGIN module_block -->
-    			 <option value="{VALUE}"{SELECTED}>{NAME}</option>
-                 <!-- END module_block -->
-    			</select>
-    		</td>
-			<td >
-    			<input type="submit" name="submit" value="{TEXT_ADD}" class="input_medium" />
-    		</td>
-    	</tr>
-    	</table>
-	</form>
-    <!-- BEGIN calendar_block -->
-    <script type="text/javascript" >
-         var section_id = '{VAR_SECTION_ID}';
-         var start_date = '{start_date}';
-         var end_date = '{end_date}';
-         var trigger_start = '{trigger_start}';
-         var trigger_end = '{trigger_end}';
-         var jscal_today = '{jscal_today}';
-         var jscal_ifformat = '{jscal_ifformat}';
-         var jscal_firstday = {jscal_firstday};
-         var showsTime = {showsTime};
-         var timeFormat = {timeFormat};
-    </script>
-    <script src="{ADMIN_URL}/pages/page_calendar.js" type="text/javascript" ></script>
-    <!-- END calendar_block -->
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/modules.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/modules.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/modules.htt	(nonexistent)
@@ -1,119 +0,0 @@
-<!-- BEGIN main_block -->
-
-<div class="box">
-	{URL_TEMPLATES}&nbsp;&nbsp;{URL_LANGUAGES}&nbsp;&nbsp;{URL_ADVANCED}
-</div>
-
-<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
-
-<h2>{HEADING_INSTALL_MODULE}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<input type="file" name="userfile" size="82%" />
-		<script type="text/javascript">
-		document.install.userfile.focus();
-		</script>
-	</td>
-	<td width="110" align="left">
-		<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-
-</form>
-
-<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
-
-<h2>{HEADING_UNINSTALL_MODULE}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<select name="file" style="width: 97%;">
-		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN module_list_block -->
-			<option value="{VALUE}">{NAME}</option>
-		<!-- END module_list_block -->
-		</select>
-	</td>
-	<td width="110">
-		<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-
-</form>
-
-<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
-
-<h2>{HEADING_MODULE_DETAILS}</h2>
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%">
-<tr>
-	<td>
-		<select name="file" style="width: 97%;">
-		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN module_list_block -->
-			<option value="{VALUE}">{NAME}</option>
-		<!-- END module_list_block -->
-		</select>
-	</td>
-	<td width="110">
-		<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
-	</td>
-</tr>
-</table>
-
-<br />
-</form>
-
-<div class="{DISPLAY_MANUAL_INSTALL}">
-<h2>{HEADING_INVOKE_MODULE_FILES}</h2>
-<p>{TEXT_MANUAL_INSTALLATION}</p>
-
-<form name="details" action="manual_install.php" method="post" class="{INSTALL_VISIBLE}">
-	<strong>{TEXT_FILE}:</strong> "install.php"&nbsp;&nbsp;&nbsp;
-	<input type="hidden" name="action" value="install" />
-	<select name="file" style="width: 250px;">
-	<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN install_list_block -->
-		<option value="{VALUE}">{NAME}</option>
-		<!-- END install_list_block -->
-	</select>
-	<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width: 100px; margin-left: 1em;" />
-</form>
-
-<form name="details" action="manual_install.php" method="post" class="{UPGRADE_VISIBLE}">
-	<br />{TEXT_FILE}: "upgrade.php"
-	<input type="hidden" name="action" value="upgrade" />
-	<select name="file" style="width: 250px;">
-	<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN upgrade_list_block -->
-		<option value="{VALUE}">{NAME}</option>
-		<!-- END upgrade_list_block -->
-	</select>
-	<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width: 100px; margin-left: 1em;" />
-</form>
-
-<form name="details" action="manual_install.php" method="post" class="{UNINSTALL_VISIBLE}">
-	<br />{TEXT_FILE}: "uninstall.php"
-	<input type="hidden" name="action" value="uninstall" />
-	<select name="file" style="width: 250px;">
-	<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
-		<!-- BEGIN uninstall_list_block -->
-		<option value="{VALUE}">{NAME}</option>
-		<!-- END uninstall_list_block -->
-	</select>
-	<input type="submit" name="submit" value="{TEXT_EXECUTE}" style="width: 100px; margin-left: 1em;" />
-</form>
-
-<p style="color: red;">{TEXT_MANUAL_INSTALLATION_WARNING}</p>
-</div>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/modules_details.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/modules_details.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/modules_details.htt	(nonexistent)
@@ -1,36 +0,0 @@
-<!-- BEGIN main_block -->
-
-<h2>{HEADING_MODULE_DETAILS}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0">
-<tr>
-	<td width="100">{TEXT_NAME}:</td>
-	<td>{NAME}</td>
-</tr>
-<tr>
-	<td>{TEXT_TYPE}:</td>
-	<td>{TYPE}</td>
-</tr>
-<tr>
-	<td>{TEXT_AUTHOR}:</td>
-	<td>{AUTHOR}</td>
-</tr>
-<tr>
-	<td>{TEXT_VERSION}:</td>
-	<td>{VERSION}</td>
-</tr>
-<tr>
-	<td>{TEXT_DESIGNED_FOR}:</td>
-	<td>Website Baker {DESIGNED_FOR}</td>
-</tr>
-<tr>
-	<td valign="top">{TEXT_DESCRIPTION}:</td>
-	<td style="text-align: justify;">{DESCRIPTION}</td>
-</tr>
-</table>
-
-<br />
-
-<button onclick="window.location = 'index.php';">{TEXT_BACK}</button>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/login.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/login.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/login.htt	(nonexistent)
@@ -1,93 +0,0 @@
-<!-- BEGIN mainBlock -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>{TEXT_LOGIN}</title>
-<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
-<meta http-equiv="content-language" content="{LANGUAGE}" />
-<meta name="description" content="{TEXT_LOGIN}" />
-<meta name="keywords" content="{TEXT_LOGIN}" />
-<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
-</head>
-<body onload="document.login.{USERNAME_FIELDNAME}.focus();">
-
-<table cellpadding="0" cellspacing="0" border="0" width="770" align="center">
-<tr>
-	<td width="60" valign="top">
-		<img src="{THEME_URL}/images/logo.png" alt="Logo" />
-	</td>
-	<td width="5">&nbsp;</td>
-	<td style="font-size: 20px; ">
-		<font style="color: #FFFFFF;">{SECTION_LOGIN}</font>
-	</td>
-</tr>
-</table>
-
-<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;" class="container">
-<tr>
-	<td class="content">
-	
-	<form name="login" action="{ACTION_URL}" method="post">
-	<input type="hidden" name="url" value="{URL}" />
-	<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
-	<input type="hidden" name="password_fieldname" value="{PASSWORD_FIELDNAME}" />
-		<table cellpadding="5" cellspacing="0" border="0" align="center" width="500">
-		<tr>
-			<td height="40" align="center" colspan="2">{MESSAGE}</td>
-		</tr>
-		<tr>
-			<td height="10" colspan="2"></td>
-		</tr>
-		<tr>
-			<td width="170" height="30" align="right">{TEXT_USERNAME}:</td>
-			<td><input type="text" maxlength="{MAX_USERNAME_LEN}" name="{USERNAME_FIELDNAME}" value="{USERNAME}" style="width: 180px;" /></td>
-		</tr>
-		<tr>
-			<td width="170" height="30" align="right">{TEXT_PASSWORD}:</td>
-			<td><input type="password" maxlength="{MAX_PASSWORD_LEN}" name="{PASSWORD_FIELDNAME}" style="width: 180px;" /></td>
-		</tr>
-		<tr style="{DISPLAY_REMEMBER_ME};">
-			<td>&nbsp;</td>
-			<td>
-				<input type="checkbox" name="remember" id="remember" value="true" />
-				<label for="remember">
-					{TEXT_REMEMBER_ME}
-				</label>
-			</td>
-		</tr>
-		<tr>
-			<td>&nbsp;</td>
-			<td><input type="submit" name="submit" value="{TEXT_LOGIN}" style="width: 180px; font-size: 10px; text-transform: uppercase; color: #003366; border: 1px solid #336699; background-color: #DDDDDD; padding: 3px;" /></td>
-		</tr>
-		<tr>
-			<td height="10" colspan="2"></td>
-		</tr>
-		</table>
-	</form>
-	
-	<center>
-		<a href="{FORGOTTEN_DETAILS_APP}">{TEXT_FORGOTTEN_DETAILS}</a>
-		<br />
-		<br />
-		<br />
-		<a href="{WB_URL}">{TEXT_HOME}</a>
-	</center>
-
-	</td>
-</tr>
-</table>
-
-<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
-<tr>
-	<td style="font-size:12px;text-align:center;">
-      <!-- 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.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>
-</table>
-
-</body>
-</html>
-<!-- END mainBlock -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/error.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/error.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/error.htt	(nonexistent)
@@ -1,6 +0,0 @@
-<!-- BEGIN main_block -->
-<div style='text-align:center;'>
-	<p>{MESSAGE}</p>
-	<p><a href="{LINK}">{BACK}</a></p>
-</div>
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/templates_details.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/templates_details.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/templates_details.htt	(nonexistent)
@@ -1,32 +0,0 @@
-<!-- BEGIN main_block -->
-
-<h2>{HEADING_TEMPLATE_DETAILS}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0">
-<tr>
-	<td width="100">{TEXT_NAME}:</td>
-	<td>{NAME}</td>
-</tr>
-<tr>
-	<td>{TEXT_AUTHOR}:</td>
-	<td>{AUTHOR}</td>
-</tr>
-<tr>
-	<td>{TEXT_VERSION}:</td>
-	<td>{VERSION}</td>
-</tr>
-<tr>
-	<td>{TEXT_DESIGNED_FOR}:</td>
-	<td>Website Baker {DESIGNED_FOR}</td>
-</tr>
-<tr>
-	<td valign="top">{TEXT_DESCRIPTION}:</td>
-	<td style="text-align: justify;">{DESCRIPTION}</td>
-</tr>
-</table>
-
-<br />
-
-<button onclick="window.location = 'index.php';">{TEXT_BACK}</button>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic
- * This theme is the WB backend Theme from WB 2.7
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent directory listing
-header('Location: ../../../index.php');
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/templates/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/templates/header.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/header.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/header.htt	(nonexistent)
@@ -1,57 +0,0 @@
-<!-- BEGIN header_block -->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>{WEBSITE_TITLE} >> {TEXT_ADMINISTRATION} - {SECTION_NAME}</title>
-<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
-<meta http-equiv="content-language" content="{LANGUAGE}" />
-<meta name="description" content="{TEXT_ADMINISTRATION}" />
-<meta name="keywords" content="{TEXT_ADMINISTRATION}" />
-<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
-{BACKEND_MODULE_CSS}
-<script type="text/javascript">
-var WB_URL = '{WB_URL}';
-var THEME_URL = '{THEME_URL}';
-var ADMIN_URL = '{ADMIN_URL}';
-</script>
-<script src="{WB_URL}/include/editarea/edit_area_full.js" type="text/javascript"></script>
-{BACKEND_MODULE_JS}
-<script type="text/javascript">
-function confirm_link(message, url) {
-	if(confirm(message)) location.href = url;
-}
-</script>
-</head>
-<body>
-<table cellpadding="0" cellspacing="0" border="0" width="770" align="center">
-<tr>
-	<td width="60" valign="top">
-		<a href="{ADMIN_URL}" title="{TITLE_START}"><img src="{THEME_URL}/images/logo.png" border="0" alt="Logo" /></a>
-	</td>
-	<td width="5">&nbsp;</td>
-	<td style="font-size: 14px;" valign="top" align="right">
-         <a href="{ADMIN_URL}" title="{TITLE_START}"><img src="{THEME_URL}/images/home.png" border="0" alt="{TITLE_START}" /></a>
-         &nbsp;&nbsp;<a href="{URL_VIEW}" target="_blank" title="{TITLE_VIEW}"><img src="{THEME_URL}/images/view.png" border="0" alt="{WB_URL}" /></a>
-	&nbsp; <a href="{URL_HELP}" target="_blank" title="{TITLE_HELP}"><img src="{THEME_URL}/images/help.png" border="0" alt="{TITLE_HELP}" /></a>
-         &nbsp; <a href="{ADMIN_URL}/logout" title="{TITLE_LOGOUT}"><img src="{THEME_URL}/images/dl.png" border="0" alt="{TITLE_LOGOUT}" /></a>
-</td>
-	<td width="100" align="right" style="padding-top: 10px; padding-right: 15px; color: #000;">
-	Version {VERSION}<br />
-    Revision {REVISION}
-	</td>
-</tr>
-</table>
-
-<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" class="container">
-<tr>
-	<td>
-		<ul class="menu">
-			<!-- BEGIN linkBlock -->
-			<li class="{CLASS}"><a href="{LINK}" target="{TARGET}">{TITLE}</a></li>
-			<!-- END linkBlock -->
-		</ul>
-	</td>
-</tr>
-<tr>
-	<td class="content">
-<!-- END header_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/pages_settings.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/pages_settings.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/pages_settings.htt	(nonexistent)
@@ -1,181 +0,0 @@
-<!-- BEGIN main_block -->
-
-<script src="{ADMIN_URL}/pages/page_settings.js" type="text/javascript"></script>
-
-<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom: 10px;">
-<tr style="background-color: #F0F0F0;">
-	<td valign="middle" align="left">
-		<h2>{HEADING_MODIFY_PAGE_SETTINGS}</h2>
-	</td>
-	<td nowrap="nowrap">ID: {PAGE_ID}</td>
-	<td align="right">
-		{TEXT_CURRENT_PAGE}:
-		<b>{PAGE_TITLE}</b>
-		-
-		<a href="{ADMIN_URL}/pages/modify.php?page_id={PAGE_ID}">{TEXT_MODIFY_PAGE}</a>
-		<font style="{DISPLAY_MANAGE_SECTIONS}">-</font>
-		<a href="{ADMIN_URL}/pages/sections.php?page_id={PAGE_ID}" style="{DISPLAY_MANAGE_SECTIONS}">{TEXT_MANAGE_SECTIONS}</a>
-		<br />
-		<font style="color: #999999;" class="{DISPLAY_MODIFIED}">
-			{LAST_MODIFIED} {MODIFIED_BY} ({MODIFIED_BY_USERNAME}), {MODIFIED_WHEN}
-		</font>
-	</td>
-</tr>
-</table>
-
-<form name="settings" action="settings2.php" method="post">
-
-<input type="hidden" name="page_id" value="{PAGE_ID}" />
-
-<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
-<tr>
-	<td width="100" height="20">{TEXT_PAGE_TITLE}:</td>
-	<td width="240" height="20">
-		<input type="text" name="page_title" value="{PAGE_TITLE}" style="width: 232px;" />
-	</td>
-	<td rowspan="10" valign="top" style="padding-left: 20px; padding-top: 8px;">
-		{TEXT_ADMINISTRATORS}:
-		<ul style="list-style-type: none; margin: 0; padding: 0;">
-			<!-- BEGIN group_list_block -->
-			<li>
-			<input type="checkbox" name="admin_groups[]" id="admin_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
-			<label for="admin_group_{TOGGLE}">{NAME}</label>
-			</li>
-			<!-- END group_list_block -->
-		</ul>
-	</td>
-	<td rowspan="10" valign="top" style="padding-left: 20px; padding-top: 8px;">
-		<div id="allowed_viewers" style="{DISPLAY_VIEWERS};">
-			{TEXT_ALLOWED_VIEWERS}:
-			<ul style="list-style-type: none; margin: 0; padding: 0;">
-				<!-- BEGIN group_list_block2 -->
-				<li>
-				<input type="checkbox" name="viewing_groups[]" id="viewing_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
-				<label for="viewing_group_{TOGGLE}">{NAME}</label>
-				</li>
-				<!-- END group_list_block2 -->
-			</ul>
-		</div>
-	</td>
-</tr>
-<tr>
-	<td width="100" height="20">{TEXT_MENU_TITLE}:</td>
-	<td width="240" height="20">
-		<input type="text" name="menu_title" value="{MENU_TITLE}" style="width: 232px;" />
-	</td>
-</tr>
-<tr>
-	<td width="100">{TEXT_PARENT}:</td>
-	<td width="240">
-		<select name="parent" style="width: 240px;" onchange="return disabled_hack_for_ie(this);">
-			<!-- BEGIN page_list_block2 -->
-			<option value="{ID}"{SELECTED} style="background: {FLAG_ROOT_ICON} no-repeat center left; padding-left: 20px;">{TITLE}</option>
-			<!-- END page_list_block2 -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td width="100">{TEXT_VISIBILITY}:</td>
-	<td width="240">
-		<select name="visibility" onchange="javascript: toggle_viewers();" style="width: 240px;">
-			<option value="public"{PUBLIC_SELECTED}>{TEXT_PUBLIC}</option>
-			<option value="private"{PRIVATE_SELECTED}>{TEXT_PRIVATE}</option>
-			<option value="registered"{REGISTERED_SELECTED}>{TEXT_REGISTERED}</option>
-			<option value="hidden"{HIDDEN_SELECTED}>{TEXT_HIDDEN}</option>
-			<option value="none"{NO_VIS_SELECTED}>{TEXT_NONE}</option>
-		</select>
-	</td>
-</tr>
-<tr>
-	<td width="100" valign="top">{TEXT_DESCRIPTION}:</td>
-	<td>
-		<textarea name="description" rows="10" cols="1" style="width: 236px; height: 50px;">{DESCRIPTION}</textarea>
-	</td>
-</tr>
-<tr>
-	<td width="100" valign="top">{TEXT_KEYWORDS}:</td>
-	<td>
-		<textarea name="keywords" rows="10" cols="1" style="width: 236px; height: 50px;">{KEYWORDS}</textarea>
-	</td>
-</tr>
-<tr>
-	<td>
-		{TEXT_TARGET}:
-	</td>
-	<td>
-		<select name="target" style="width: 240px;" ><!--  value="{TARGET}" -->
-			<option value="_blank"{BLANK_SELECTED}>{TEXT_NEW_WINDOW}</option>
-			<option value="_self"{SELF_SELECTED}>{TEXT_SAME_WINDOW}</option>
-			<option value="_top"{TOP_SELECTED}>{TEXT_TOP_FRAME}</option>
-		</select>
-	</td>
-</tr>
-<tr>
-	<td width="100">{TEXT_TEMPLATE}:</td>
-	<td width="240">
-		<select name="template" style="width: 240px;">
-			<option value="">{TEXT_SYSTEM_DEFAULT}</option>
-			<option value="">----------------------</option>
-			<!-- BEGIN template_list_block -->
-			<option value="{VALUE}"{SELECTED}>{NAME}</option>
-			<!-- END template_list_block -->
-		</select>
-	</td>
-</tr>
-<tr style="{DISPLAY_MENU_LIST}">
-	<td width="100">{TEXT_MENU}:</td>
-	<td width="240">
-		<select name="menu" style="width: 240px;">
-			<!-- BEGIN menu_list_block -->
-			<option value="{VALUE}"{SELECTED}>{NAME}</option>
-			<!-- END menu_list_block -->
-		</select>
-	</td>
-</tr>
-<tr style="{DISPLAY_LANGUAGE_LIST}">
-	<td width="100">{TEXT_LANGUAGE}:</td>
-	<td width="240">
-		<select name="language" style="width: 240px;">
-			<!-- BEGIN language_list_block -->
-			<option value="{VALUE}"{SELECTED} style="background: {FLAG_LANG_ICONS} no-repeat center left; padding-left: 20px;">{NAME}</option>
-			<!-- END language_list_block -->
-		</select>
-	</td>
-</tr>
-<!-- insert page_code 20090904-->
-<tr{DISPLAY_CODE_PAGE_LIST}>
-	<td width="100">{TEXT_PAGE_CODE}:</td>
-	<td width="240">
-		<select name="page_code" style="width: 240px;">
-			<!-- BEGIN page_code_list_block -->
-			<option value="{VALUE}"{SELECTED} style="background: {FLAG_CODE_ICON} no-repeat center left; padding-left: 20px;">{PAGE_CODE}</option>
-			<!-- END page_code_list_block -->
-		</select>
-	</td>
-</tr>
-<!-- page code -->
-<tr>
-	<td width="100">{TEXT_SEARCHING}:</td>
-	<td width="240">
-		<select name="searching" style="width: 240px;">
-			<option value="1">{TEXT_ENABLED}</option>
-			<option value="0"{SEARCHING_DISABLED}>{TEXT_DISABLED}</option>
-		</select>
-	</td>
-</tr>
-<tr>
-	<td width="100">&nbsp;</td>
-	<td colspan="4">
-		<input type="submit" name="submit" value="{TEXT_SAVE} {SECTION_SETTINGS}" style="width: 117px;" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" style="width: 117px;" />
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>&nbsp;</td>
-</tr>
-</table>
-
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/pages.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/pages.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/pages.htt	(nonexistent)
@@ -1,98 +0,0 @@
-<!-- BEGIN main_block -->
-<div class="{DISPLAY_ADD}">
-    <h2>{HEADING_ADD_PAGE}</h2>
-    <form name="add" action="add.php" method="post">
-    <table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
-    <tr>
-    	<td width="70" height="20">{TEXT_TITLE}:</td>
-    	<td width="240" height="20">
-    		<input type="text" name="title" style="width: 232px;" />
-    	</td>
-    	<td rowspan="6" valign="top" style="padding-left: 20px; padding-top: 8px;">
-    		{TEXT_ADMINISTRATORS}:
-    		<ul style="list-style-type: none; margin: 0; padding: 0;">
-    			<!-- BEGIN group_list_block -->
-    			<li>
-    			<input type="checkbox" name="admin_groups[]" id="admin_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
-    			<label for="admin_group_{TOGGLE}">{NAME}</label>
-    			</li>
-    			<!-- END group_list_block -->
-    		</ul>
-    	</td>
-    	<td rowspan="6" valign="top" style="padding-left: 20px; padding-top: 8px;">
-    		<div id="viewers" style="display: none;">
-    			{TEXT_REGISTERED_VIEWERS}:
-    			<ul style="list-style-type: none; margin: 0; padding: 0;">
-    				<!-- BEGIN group_list_block2 -->
-    				<li>
-    				<input type="checkbox" name="viewing_groups[]" id="viewing_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
-    				<label for="viewing_group_{TOGGLE}">{NAME}</label>
-    				</li>
-    				<!-- END group_list_block2 -->
-    			</ul>
-    		</div>
-    	</td>
-    </tr>
-    <tr>
-    	<td width="70">{TEXT_TYPE}:</td>
-    	<td width="240">
-    		<select name="type" style="width: 240px;">
-    			<!-- BEGIN module_list_block -->
-    				<option value="{VALUE}"{SELECTED}>{NAME}</option>
-    			<!-- END module_list_block -->
-    		</select>
-    	</td>
-    </tr>
-    <tr>
-    	<td width="70">{TEXT_PARENT}:</td>
-    	<td width="240">
-    		<select name="parent" style="width: 240px;" onchange="return disabled_hack_for_ie(this);">
-    			<!-- BEGIN page_list_block2 -->
-    			<option value="{ID}"{DISABLED} style="background: {FLAG_ROOT_ICON} no-repeat center left; padding-left: 20px;">{TITLE}</option>
-    			<!-- END page_list_block2 -->
-    		</select>
-    	</td>
-    </tr>
-    <tr>
-    	<td width="70">{TEXT_VISIBILITY}:</td>
-    	<td width="240">
-    		<select name="visibility" onchange="javascript: toggle_viewers();" style="width: 240px;">
-    			<option value="public"{SELECTED}>{TEXT_PUBLIC}</option>
-    			<option value="private">{TEXT_PRIVATE}</option>
-    			<option value="registered">{TEXT_REGISTERED}</option>
-    			<option value="hidden">{TEXT_HIDDEN}</option>
-    			<option value="none">{TEXT_NONE}</option>
-    		</select>
-    	</td>
-    </tr>
-    <tr>
-    	<td width="70">&nbsp;</td>
-    	<td colspan="4">
-    		<input type="submit" name="submit" value="{TEXT_ADD}" style="width: 117px;" />
-    		<input type="reset" name="reset" value="{TEXT_RESET}" style="width: 117px;" />
-    	</td>
-    </tr>
-    <tr>
-    	<td>&nbsp;</td>
-    	<td>&nbsp;</td>
-    </tr>
-    </table>
-
-    </form>
-
-</div>
-<div class="{DISPLAY_INTRO}" style="padding-top: 10px;">
-<br />
-<h2>{HEADING_MODIFY_INTRO_PAGE}</h2>
-<a href="intro.php">
-{INTRO_LINK}
-</a>
-
-</div>
-<!-- Addition for remembering expanded state of pages -->
-<script type="text/javascript">
-var THEME_URL = '{THEME_URL}';
-var WB_URL = '{WB_URL}';
-</script>
-<script src="{ADMIN_URL}/pages/page_index.js" type="text/javascript"></script>
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/users_form.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/users_form.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/users_form.htt	(nonexistent)
@@ -1,94 +0,0 @@
-<!-- BEGIN main_block -->
-
-<script type="text/javascript">
-function toggle_radio(radio_on, radio_off) {
-	document.getElementById(radio_on).checked = true;
-	document.getElementById(radio_off).checked = true;
-}
-</script>
-
-<h2 style="{DISPLAY_EXTRA}">{HEADING_MODIFY_USER}</h2>
-
-<form name="user" action="{ACTION_URL}" method="post" class="{DISPLAY_ADD}">
-<input type="hidden" name="user_id" value="{USER_ID}" />
-<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="150">{TEXT_USERNAME}:</td>
-	<td class="value_input">
-		<input type="text" name="{USERNAME_FIELDNAME}" maxlength="30" value="{USERNAME}" />
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_PASSWORD}:</td>
-	<td class="value_input">
-		<input type="password" name="password" maxlength="30" />
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_RETYPE_PASSWORD}:</td>
-	<td class="value_input">
-		<input type="password" name="password2" maxlength="30" />
-	</td>
-</tr>
-<tr style="{DISPLAY_EXTRA}">
-	<td>&nbsp;</td>
-	<td style="font-size: 10px;">
-		{CHANGING_PASSWORD}
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_DISPLAY_NAME}:</td>
-	<td class="value_input">
-		<input type="text" name="display_name" maxlength="255" value="{DISPLAY_NAME}" />
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_EMAIL}:</td>
-	<td class="value_input">
-		<input type="text" name="email" maxlength="255" value="{EMAIL}" />
-	</td>
-</tr>
-<tr style="{DISPLAY_HOME_FOLDERS}">
-	<td>{TEXT_HOME_FOLDER}:</td>
-	<td class="value_input">
-		<select name="home_folder">
-			<option value="">{TEXT_NONE}</option>
-			<!-- BEGIN folder_list_block -->
-			<option value="{FOLDER}"{SELECTED}>{NAME}</option>
-			<!-- END folder_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_GROUP}:</td>
-	<td class="value_input">
-		<select name="groups[]" multiple="multiple" size="5">
-		<!-- BEGIN group_list_block -->
-			<option value="{ID}" {SELECTED}>{NAME}</option>
-		<!-- END group_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="radio" name="active[]" id="active" value="1" {ACTIVE_CHECKED} />
-		<label for="active">{TEXT_ACTIVE}</label>
-		<input type="radio" name="active[]" id="disabled" value="0" {DISABLED_CHECKED} />
-		<label for="disabled">{TEXT_DISABLED}</label>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{SUBMIT_TITLE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/templates/start.htt
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/templates/start.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/templates/start.htt	(nonexistent)
@@ -1,153 +0,0 @@
-<!-- BEGIN main_block -->
-
-<table cellpadding="0" cellspacing="0" border="0" width="99%" align="center">
-<tr>
-	<td colspan="3" align="center">
-		{WELCOME_MESSAGE}. {CURRENT_USER} {DISPLAY_NAME}
-	</td>
-</tr>
-<tr style="{DISPLAY_WARNING};">
-	<td colspan="3" align="center" style="color: #FF0000; font-weight: bold;">
-		{WARNING}
-	</td>
-</tr>
-<tr>
-	<td align="center" valign="top">
-		
-		<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_PAGES};">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/pages/index.php">
-					<img src="{THEME_URL}/icons/pages.png" alt="{PAGES}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/pages/index.php">{PAGES}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{PAGES_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-		
-		<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ADDONS};">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/addons/index.php">
-					<img src="{THEME_URL}/icons/addons.png" alt="{ADDONS}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/addons/index.php">{ADDONS}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{ADDONS_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-
-		<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_SETTINGS};">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/settings/index.php">
-					<img src="{THEME_URL}/icons/settings.png" alt="{SETTINGS}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/settings/index.php">{SETTINGS}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{SETTINGS_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-
-		<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ACCESS};">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/access/index.php">
-					<img src="{THEME_URL}/icons/access.png" alt="{ACCESS}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/access/index.php">{ACCESS}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{ACCESS_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-
-	</td>
-	<td width="15">
-		&nbsp;
-	</td>
-	<td align="center" valign="top">
-		
-		<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_MEDIA};">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/media/index.php">
-					<img src="{THEME_URL}/icons/media.png" alt="{MEDIA}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/media/index.php">{MEDIA}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{MEDIA_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-
-		<table cellpadding="0" cellspacing="0" border="0" class="section">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/preferences/index.php">
-					<img src="{THEME_URL}/icons/preferences.png" alt="{PREFERENCES}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/preferences/index.php">{PREFERENCES}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{PREFERENCES_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-
-		<table cellpadding="0" cellspacing="0" border="0" class="section" style="{DISPLAY_ADMINTOOLS};">
-		<tr>
-			<td class="graphic" align="center" valign="middle" rowspan="2">
-				<a href="{ADMIN_URL}/admintools/index.php">
-					<img src="{THEME_URL}/icons/admintools.png" alt="{ADMINTOOLS}" />
-				</a>
-			</td>
-			<td class="title">
-				<a href="{ADMIN_URL}/admintools/index.php">{ADMINTOOLS}</a>
-			</td>
-		</tr>
-		<tr>
-			<td class="description">
-				{ADMINTOOLS_OVERVIEW}
-			</td>
-		</tr>
-		</table>
-
-	</td>
-</tr>
-</table>
-
-<!-- END main_block -->
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/media.css
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/media.css	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/media.css	(nonexistent)
@@ -1,37 +0,0 @@
-body,td,th,input,textarea {
-	font-family: Verdana, Arial, Helvetica, sans-serif;
-	font-size: 12px;
-	color: #000000;
-}
-body {
-	background-color: #FFFFFF;
-	margin: 0px;
-}
-hr {
-	margin: 0px;
-	color: #003366;
-	height: 1px;
-}
-a:link, a:visited, a:active {
-	color: #003366;
-	text-decoration: none;
-}
-a:hover {
-	text-decoration: none;
-	color: #336699;
-}
-input:focus, select:focus, textarea:focus {
-	background: #F1F8FD;
-}
-.content {
-	width: 100%;
-	height: 100px;
-}
-.rename {
-    background: #fff url(images/bgtitle.png) ;
-    background-repeat:repeat-x;
-	padding: 20px;
-}
-.hide {
-	display: none;
-}

Property changes on: branches/2.8.x/wb/templates/classic_theme/media.css
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic
- * This theme is the WB backend Theme from WB 2.7
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent this file from being accessed directly
-if (!defined('WB_PATH')) die(header('Location: ../../index.php'));
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/info.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/info.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/info.php	(nonexistent)
@@ -1,40 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic_theme
- * This theme is the default WB backend Theme
- * Feel free to modify or build up on this template.
- *
- * This file defines the template variables required by Website Baker.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Matthias Gallas
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// OBLIGATORY WEBSITE BAKER VARIABLES
-$template_directory			= 'classic_theme';
-$template_name				= 'classic_theme';
-$template_function			= 'theme';
-$template_version			= '2.80';
-$template_platform			= '2.8';
-$template_author			= 'Matthias Gallas';
-$template_license			= '<a href="http://www.gnu.org/licenses/gpl.html">GNU General Public License</a>';
-$template_license_terms		= '-';
-$template_description		= 'Backend theme for Website Baker 2.7.';
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/info.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/languages/DE.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/languages/DE.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/languages/DE.php	(nonexistent)
@@ -1,29 +0,0 @@
-<?php
-
-// $Id$
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2009, Ryan Djurovich
-
- Website Baker is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- Website Baker is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-//Modul Description
-$template_description 	= 'Das Backend-Theme von Websitebaker 2.7.';
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/languages/DE.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/languages/EN.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/languages/EN.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/languages/EN.php	(nonexistent)
@@ -1,29 +0,0 @@
-<?php
-
-// $Id$
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2009, Ryan Djurovich
-
- Website Baker is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- Website Baker is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-//Modul Description
-$template_description 	= 'Backend theme from Website Baker 2.7.';
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/languages/EN.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/languages/index.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/languages/index.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/languages/index.php	(nonexistent)
@@ -1,32 +0,0 @@
-<?php
-/**
- * $Id$
- * Website Baker theme: classic
- * This theme is the WB backend Theme from WB 2.7
- * Feel free to modify or build up on this template.
- *
- * This file prevents directory listing.
- *
- * LICENSE: GNU General Public License
- * 
- * @author     Johannes Tassilo Gruber
- * @copyright  GNU General Public License
- * @license    http://www.gnu.org/licenses/gpl.html
- * @version    2.80
- * @platform   Website Baker 2.8
- *
- * Website Baker is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * Website Baker is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-*/
-
-// prevent directory listing
-header('Location: ../../../index.php');
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/languages/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/classic_theme/languages/NO.php
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/languages/NO.php	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/languages/NO.php	(nonexistent)
@@ -1,29 +0,0 @@
-<?php
-
-// $Id$
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2009, Ryan Djurovich
-
- Website Baker is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- Website Baker is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-//Modul Description
-$template_description 	= 'Klassisk designmal for Admin sidene fra Website Baker 2.7.';
-
-?>
\ No newline at end of file

Property changes on: branches/2.8.x/wb/templates/classic_theme/languages/NO.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
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 1312)
+++ branches/2.8.x/wb/templates/classic_theme/jquery/jquery-plugins.js	(nonexistent)
@@ -1,23 +0,0 @@
-$(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");
-
-});
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/jquery/toggle_zip.js
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/jquery/toggle_zip.js	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/jquery/toggle_zip.js	(nonexistent)
@@ -1,14 +0,0 @@
-function toggle() {
-	var check = document.getElementById("file2");
-	if (check.style.visibility == "visible") {
-		for (i=2; i<=10; i++) {
-			document.getElementById("file" + i).style.visibility = "hidden";
-		}
-		document.getElementById("delzip").style.display = "inline";
-	} else {
-		for (i=2; i<=10; i++) {
-			document.getElementById("file" + i).style.visibility = "visible";
-		}
-		document.getElementById("delzip").style.display = "none";
-	}
-}
Index: branches/2.8.x/wb/templates/classic_theme/jquery/jquery-fixedheader.js
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/jquery/jquery-fixedheader.js	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/jquery/jquery-fixedheader.js	(nonexistent)
@@ -1,141 +0,0 @@
-/**
- * Stupid Fixed Header 1.0.1 - jQuery plugins to create a fixed headers
- * 
- * Require: jQuery 1.2.6
- * Author: Jacky See
- * Blog: http://jacky.seezone.net
- * email:  jackysee at gmail dot com
- * Dual licensed under the MIT and GPL licenses:
- *   http://www.opensource.org/licenses/mit-license.php
- *   http://www.gnu.org/licenses/gpl.html
-*/
-
-(function($){
-	
-	/* created fixed headers , require jquery dimenions plugins*/
-	$.fn.fixedHeader = function(o){
-		var s = {adjustWidth: $.fixedHeader.calcWidth};
-		if(o) $.extend(s,o);
-		
-		return this.each(function(){
-			var table = $(this); //table
-			var tId = this.id;
-			
-			var scrollBarWidth = $.fixedHeader.getScrollBarWidth();
-			var IE6 = $.browser.msie && $.browser.version == '6.0';
-			
-			//wrap a body container
-			var bodyContainer = table.wrap('<div></div>').parent()
-				.attr('id', tId + "_body_container")
-				.css({
-					width: s.width,
-					height: s.height,
-					overflow: 'auto'
-				});
-			
-			//Wrap with an overall container
-			var tableContainer = bodyContainer.wrap('<div></div>').parent()
-				.attr('id', tId + '_table_container')
-				.css('position','relative');
-
-			//clone the header
-			var headerContainer = $(document.createElement('div'))
-				.attr('id', tId + '_header_container')
-				.css({
-					width:  bodyContainer.innerWidth() - scrollBarWidth,
-					height: table.find('thead').outerHeight(), 
-					overflow: 'hidden',
-					top: 0, left:0
-				})
-				.prependTo(tableContainer);
-			
-			var headerTable = table.clone(true)
-				.find('tbody').remove().end()
-				.attr('id',tId + "_header")
-				.addClass(s.tableClass || table[0].className)
-				.css({
-					//width: $.browser.msie? table.outerWidth():table.width(), 
-					'table-layout':'fixed',
-					position:'absolute',
-					top:0, left:0
-				})
-				.append(table.find('thead').clone(true))
-				.appendTo(headerContainer);
-			
-			//sync header width
-			var headThs = headerTable.find('th');
-			table.find('th').each(function(i){
-				headThs.eq(i).css('width', s.adjustWidth(this));
-			})
-			
-			//sync scroll
-			var selects = IE6? table.find("select"): null;
-			bodyContainer.scroll(function(){
-				if(IE6 && selects.size()>0){
-					selects.each(function(i){
-						this.style.visibility =
-							($(this).offset().top - bodyContainer.offset().top) <= table.find("thead").outerHeight() + 10
-							? 'hidden':'visible';
-					});
-				}
-				headerTable.css({
-					left: '-' + $(this).scrollLeft() + 'px'
-				});
-			})
-			
-			//Move it down
-			headerContainer.css({
-				'position': 'absolute',
-				'top': 0
-			});
-		});
-	}
-	
-	$.fixedHeader = {
-		calcWidth: function(th){
-			var w = $(th).width();
-			var paddingLeft = $.fixedHeader.getComputedStyleInPx(th,'paddingLeft');
-			var paddingRight = $.fixedHeader.getComputedStyleInPx(th,'paddingRight');
-			var borderWidth = $.fixedHeader.getComputedStyleInPx(th,'borderRightWidth');			
-			if($.browser.msie) w = w+borderWidth;
-			if($.browser.opera) w = w+borderWidth;
-			if($.browser.safari) w = w+paddingLeft+paddingRight+borderWidth*2;
-			if($.browser.mozilla && parseFloat($.browser.version) <= 1.8) w=w+borderWidth; //FF2 still got a border-left missing problem, this is the best I can do.
-			return w;
-		},
-		getComputedStyleInPx: function(elem,style){
-			var computedStyle = (typeof elem.currentStyle != 'undefined')
-				?elem.currentStyle
-				:document.defaultView.getComputedStyle(elem, null);
-			var val = computedStyle[style];
-			val = val? parseInt(val.replace("px","")):0;
-			return (!val || val == 'NaN')?0:val;
-		},
-		getScrollBarWidth: function() { //calculate or get from global the scroll bar width
-			if(!$.fixedHeader.scrollBarWidth){ 
-				var inner = $(document.createElement('p')).css({width:'100%',height:'100%'});
-				var outer = $(document.createElement('div'))
-					.css({
-						position:'absolute',
-						top: '0px',
-						left: '0px',
-						visibility: 'hidden',
-						width: '200px',
-						height: '150px',
-						overflow: 'hidden'
-					})
-					.append(inner)
-					.appendTo(document.body);
-				
-				var w1 = inner[0].offsetWidth;
-				outer[0].style.overflow = 'scroll';
-				var w2 = inner[0].offsetWidth;
-				if (w1 == w2) w2 = outer[0].clientWidth;
-				document.body.removeChild (outer[0]);
-				$.fixedHeader.scrollBarWidth = (w1 - w2);
-			}
-			return $.fixedHeader.scrollBarWidth;
-		}
-	}
-	
-})(jQuery);
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/jquery/jquery-metadata.js
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/jquery/jquery-metadata.js	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/jquery/jquery-metadata.js	(nonexistent)
@@ -1,13 +0,0 @@
-/*
- * Metadata - jQuery plugin for parsing metadata from elements
- *
- * Copyright (c) 2006 John Resig, Yehuda Katz, Jï¿½Ã¶rn Zaefferer, Paul McLanahan
- *
- * Dual licensed under the MIT and GPL licenses:
- *   http://www.opensource.org/licenses/mit-license.php
- *   http://www.gnu.org/licenses/gpl.html
- *
- * Revision: $Id: jquery.metadata.js 3620 2007-10-10 20:55:38Z pmclanahan $
- *
- */
-(function($){$.extend({metadata:{defaults:{type:'class',name:'metadata',cre:/({.*})/,single:'metadata'},setType:function(type,name){this.defaults.type=type;this.defaults.name=name;},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length)settings.single='metadata';var data=$.data(elem,settings.single);if(data)return data;data="{}";if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m)data=m[1];}else if(settings.type=="elem"){if(!elem.getElementsByTagName)return;var e=elem.getElementsByTagName(settings.name);if(e.length)data=$.trim(e[0].innerHTML);}else if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr)data=attr;}if(data.indexOf('{')<0)data="{"+data+"}";data=eval("("+data+")");$.data(elem,settings.single,data);return data;}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts);};})(jQuery);
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/jquery/webkit-focusfix.js
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/jquery/webkit-focusfix.js	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/jquery/webkit-focusfix.js	(nonexistent)
@@ -1,40 +0,0 @@
-/**
- * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
- *
- * (en) Workaround for Webkit browser to fix focus problems when using skiplinks
- * (de) Workaround fÃ¼r Webkit-Browser, um den Focus zu korrigieren, bei Verwendung von Skiplinks
- *
- * @note			inspired by Paul Ratcliffe's article 
- *					http://www.communis.co.uk/blog/2009-06-02-skip-links-chrome-safari-and-added-wai-aria
- *
- * @copyright       Copyright 2005-2009, Dirk Jesse
- * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
- *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
- * @link            http://www.yaml.de
- * @package         yaml
- * @version         3.2
- * @revision        $Revision: 430 $
- * @lastmodified    $Date: 2009-10-27 21:15:57 +0100 (Di, 27. Okt 2009) $
- */
- 
-var is_webkit = navigator.userAgent.toLowerCase().indexOf('webkit') > -1;
-
-if(is_webkit) 
-{
-	var i;
-	var skiplinks = []
-	
-	if ( document.getElementsByClassName !== undefined) {
-		skiplinks = document.getElementsByClassName('skip');
-
-		for (i=0; i<skiplinks.length; i++) {
-			var target = skiplinks[i].href.substr(skiplinks[i].href.indexOf('#')+1);
-			var targetElement = document.getElementById(target);
-	
-			targetElement.href = '#'+target;
-			targetElement.setAttribute("tabindex", "0");
-	
-			skiplinks[i].setAttribute("onclick", "document.getElementById('"+target+"').focus();");
-		}
-	}	
-}
\ No newline at end of file
Index: branches/2.8.x/wb/templates/classic_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/classic_theme/theme.css	(revision 1312)
+++ branches/2.8.x/wb/templates/classic_theme/theme.css	(nonexistent)
@@ -1,80 +0,0 @@
-html { overflow: -moz-scrollbars-vertical; /* Force firefox to always show room for a vertical scrollbar */ }
-body,td,th,input,textarea { color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
-body { margin: auto; background-color: #A8BCCB; background-image: url(images/background.png); background-repeat: repeat-x; }
-img { border: 0px; }
-form { margin: 0; }
-hr { margin: 15px 0px 15px 0px; color: #003366; height: 1px; }
-h1 { color: #000000; font-size: 20px; text-align: center; text-transform: uppercase; }
-h2 { margin: 5px 0px 5px 0px; color: #336699; font-size: 15px; }
-h4 { margin: 0; border-bottom: 1px solid #DDD; padding-bottom: 5px; }
-a:link, a:visited, a:active { color: #003366; text-decoration: none; }
-a:hover { color: #336699; text-decoration: none; }
-ul, li { margin: 0; padding: 0; list-style: none; }
-label { cursor: pointer; }
-input:focus, input:active, select:focus, textarea:focus { background: #F1F8FD; }
-iframe { border: 1px solid #35373a; }
-div.box { width: 100%; margin: -10px 0 0 0; font-size: small; text-align: right; }
-.container { width: 85%; margin: 0 auto; background: #fff url(images/bgtitle.png); background-repeat: repeat-x; }
-.content { padding: 20px; width: 98%; height: 280px; vertical-align: top; }
-.current a, .current a:link, .current a:active, .current a:visited { background: #fff url(images/menuo.png); background-repeat: repeat-x; color: #fff; }
-.description { width: 240px; padding: 0px 0px 0px 3px; text-align: left; vertical-align: top; }
-.graphic { width: 50px; border: 4px solid #FDFDFD; padding-left: 3px; height: 50px; }
-.graphic img { padding: 4px; border: 1px solid #D0D0D0; background-color: #FFFFFF; vertical-align: middle; }
-.menu { margin: 0; padding: 0; padding-top: 8px; padding-bottom: 10px; padding-left: 8px; background: #000 url(images/menu.png); background-repeat: repeat-x; }
-.menu li { padding-right: 1px; list-style-type: none; display: inline; }
-.menu a, .menu a:link, .menu a:active, .menu a:visited { border-bottom: 0; padding: 7px 11px 9px 11px; color: #fff; }
-.menu a:hover { color: #fff; background: #fff url(images/menuo.png); background-repeat: repeat-x; text-decoration: none; }
-.note { color: #666666; font-size: 10px; }
-.pages_list .icon_col td img { border-style: none; float: left; padding-right: 7px; display: block; }
-.pages_list table { width: 100%; margin: 0 auto; background-color: #f0f0f0; }
-.pages_list ul { margin: 0; padding: 0px; font-weight: normal; }
-.pages_list ul li { margin: 2px 0; padding: 0px; list-style-type: none; }
-.page_list_show li { display: block; }
-img.page_list_rights { border: none; margin-right: 5px; float: left; margin-top: 2px; margin-bottom: 2px; }
-.content input { font-size: 12px; }
-.row_a { background-color: #ECF3F7; }
-.row_b { background-color: #DBEBF2; }
-.section { margin-top: 10px; padding: 0px; border: 1px solid #999999; width: 100%; background-color: #FDFDFD; height: 75px; }
-.sections_header { width: 100%; margin-bottom: 10px; border: none; background-color: #F0F0F0; height: 50px; }
-.sections_header td { padding: 5px; }
-.setting_name { width: 20%; }
-.setting_value { width: 80%; }
-.setting_value textarea { height: 50px; }
-.title { width: 90%; padding: 4px 0px 0px 3px; color: #003366; font-weight: bold; font-size: 14px; text-align: left; height: 16px; }
-.tool_table ul { margin: 0; padding: 0; margin-left: 20px; margin-bottom: 10px; }
-.tool_table li { padding-bottom: 5px; list-style-type: disc; }
-/* CSS STYLES FOR THE PAGES SECTION */
-table.pages_view { width: 100%; margin: 0 auto; border: 0; background-color: #ECF3F7; border-spacing: 0px; }
-table.pages_view tr:hover { background-color: #F1F8DD; }
-/* FORMS */
-.submit, .cancel { width: 100px; margin-top: 5px; }
-.form_submit .right { text-align: right; }
-.input_small { width: 20px; }
-.input_normal { width: 120px; }
-.input_medium { width: 150px; }
-.input_wide { width: 200px; }
-.input_large { width: 300px; }
-select option.disabled { color: #aaa; }
-.jsadmin_drag img { padding: 3px 0; margin-top: 1px; vertical-align: top; cursor: pointer; }
-.modify_link { padding-top: 4px; padding-left: 7px; text-indent: 7px; }
-.header_list_page_id { width: 50px; padding-right: 15px; text-align: right; }
-.header_list_actions { width: 150px; text-align: left; }
-.list_actions { width: 20px; text-align: left; }
-.sections_list { padding-left: 10px; font-weight: bold; }
-.sections_list table { width: 900px; }
-.header_list_block { width: 180px; text-align: left; }
-.header_list_sections_actions { width: 30px; text-align: left; }
-#multi_lingual { font-weight: bolder; }
-.right{ text-align: right; }
-.left{ text-align: left; }
-.pages_list table td, table.pages_view td { padding: 3px; }
-.save, .reset, .input_narrow { width: 100px; }
-.settings_table td, .tool_table td { text-align: left; vertical-align: top; }
-#file_mode input, #dir_mode input { width: 12px; height: 12px; }
-#hide2, .hide, .page_list { display: none; }
-.header_list_page_title, .list_page_title { width: 300px; text-align: left; }
-.list_section_id, .list_page_id, .header_list_section_id { width: 30px; text-align: right; }
-.form_submit, .input_full, .header_title, .setting_value input, .setting_value select, .setting_value textarea, .value_input input, .value_input text, .value_input select { width: 100%; }
-.form_submit .left, .header_list_menu_title, .list_menu_title, .header_list_type { text-align: left; }
-.header_list_pubdate_start, .header_list_pubdate_end, .list_pubdate_start, .list_pubdate_end { width: 200px; text-align: left; }
-/* Ende */

Property changes on: branches/2.8.x/wb/templates/classic_theme/theme.css
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: branches/2.8.x/wb/templates/wb_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/theme.css	(revision 1312)
+++ branches/2.8.x/wb/templates/wb_theme/theme.css	(revision 1313)
@@ -1,6 +1,22 @@
-html { overflow: -moz-scrollbars-vertical; /* Force firefox to always show room for a vertical scrollbar */ }
-body,td,th,input,textarea { color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
+	* html div{
+		height: 1em;  /* Workaround gegen den 3-Pixel-Bug des Internet Explorers 6 */
+	}
+	html{	/* Schrifteinstellung fÃ¼r das ganze Dokument */
+		font-family: Verdana, "Trebuchet MS", Arial, Helvetica, sans-serif;
+		font-size: 90%;
+		font-weight: normal;
+		color: #404040;
+      overflow: -moz-scrollbars-vertical; /* Force firefox to always show room for a vertical scrollbar */ 
+	}
+	body{
+      margin: 0px 0px 0px 0px;
+      padding: 0px 0px 0px 0px;
+      background: #a8bccb ;
+      text-align: left;
+   }
 body { margin: auto; background-color: #A8BCCB; /*background-image: url(images/background.png);*/ background-repeat: repeat-x; }
+
+td,th,input,textarea { color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; }
 img { border: 0px; }
 form { margin: 0; }
 hr { margin: 15px 0px 15px 0px; color: #003366; height: 1px; }
@@ -16,7 +32,7 @@
 div.box { width: 100%; margin: -10px 0 0 0; font-size: small; text-align: right; }
 .header { width: 900px; margin: 0 auto; }
 .container { width: 85%; margin: 0 auto; background: #fff url(images/bgtitle.png); background-repeat: repeat-x; }
-.content { padding: 20px; width: 98%; height: 280px; vertical-align: top; }
+.content { padding: 20px; width: 95%; height: 200px; margin: 0 auto; min-height: 300px;  vertical-align: top; }
 .current a, .current a:link, .current a:active, .current a:visited { background: #fff url(images/menuo.png); background-repeat: repeat-x; color: #fff; }
 .description { width: 240px; padding: 0px 0px 0px 3px; text-align: left; vertical-align: top; }
 .graphic { width: 50px; border: 4px solid #FDFDFD; padding-left: 3px; height: 50px; }
@@ -80,4 +96,72 @@
 .header_title, .sections_list table, .setting_value input, .setting_value select, .setting_value textarea, .value_input input, .value_input text, .value_input select, .form_submit, .input_full { width: 100%; }
 .header_list_pubdate_start, .header_list_pubdate_end, .list_pubdate_start, .list_pubdate_end { width: 200px; text-align: left; }
 .right{ text-align: right; }
-.left{ text-align: left;  }
\ No newline at end of file
+.left{ text-align: left;  }
+
+div.content_box { position: relative; margin: 0px auto; }
+div.content_box form{background: transparent;  height: auto; }
+div.content_box fieldset { margin: 10px auto; }
+div.content_box legend {  color: #336699; font-size: 15px; font-weight:bold;padding: 0px 3px 0px 4px; }
+div.content_box label{ font-weight: 600; padding-left:4px; }
+div.content_box input{ width: 500px; }
+.be_section { border: 2px groove #6ea0d0; }
+
+
+.subcolumns { width: 100%; overflow: hidden; }
+.subcolumns_oldgecko { width: 100%; float: left; }
+
+.c10l, .c20l, .c25l, .c33l, .c40l, .c38l, .c50l, .c60l, .c62l, .c66l, .c75l, .c80l { float: left; }
+.c10r, .c20r, .c25r, .c33r, .c40r, .c38r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r { float: right; margin-left: -5px; }
+
+  .c10l, .c10r { width: 10%; }
+  .c20l, .c20r { width: 21%; line-height:2em;}
+  .c40l, .c40r { width: 40%; }
+  .c60l, .c60r { width: 60%; }
+  .c25l, .c25r { width: 25%; }
+  .c33l, .c33r { width: 33.333%; }
+  .c50l, .c50r { width: 50%; }
+  .c66l, .c66r { width: 66.666%; }
+  .c38l, .c38r { width: 38.2%; }
+  .c62l, .c62r { width: 61.8%; }
+  .subc { padding: 0 0.5em; }
+  .subcl { padding: 0 1em 0 0; }
+  .subcr { padding: 0 0 0 1em; }
+
+.c80l, .c80r, .c90l, .c90r { width: 80%; }
+.c75l, .c75r, .c80l, .c80r { width: 75%; }
+
+.info { padding: 10px; margin-bottom: 0.5em; background: #f8f8f8; color: #666; font-size: 91.7%; }
+.note { border: 2px #484 solid; padding: 10px;margin: 10px 10px 10px 270px; background: #efe; color: #040; }
+.important { border: 2px #884 solid; padding: 10px;  margin-bottom: 1em; background: #ffe; color: #440; }
+.warning { border: 2px #844 solid; padding: 10px; margin-bottom: 1em; background: #fee; color: #400; }
+
+.row_0 { background-color: transparent; }
+.row_1 { background-color: #ccddee; }
+
+#language,
+#timezone,
+#date_format,
+#time_format { min-width: 250px; }
+
+#display_name,
+#username,
+#email,
+#new_password_1,
+#new_password_2,
+#current_password { min-width: 250px;  }
+
+
+#submit,
+#reset { max-width: 100px; }
+
+	fieldset.be_section{
+      clear: both;
+      -moz-border-radius: 8px;
+      -khtml-border-radius: 8px;
+      -webkit-border-radius: 8px;
+      margin-top: 0.7em;
+      text-align: left;
+      background: #f5f5f5 none;
+   }
+
+.save_section { margin: 20px auto 5px auto; }
Index: branches/2.8.x/wb/templates/wb_theme/templates/preferences.htt
===================================================================
--- branches/2.8.x/wb/templates/wb_theme/templates/preferences.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/wb_theme/templates/preferences.htt	(revision 1313)
@@ -1,134 +1,130 @@
-<!-- BEGIN main_block -->
-
-<form name="details" action="details.php" method="post">
-
-<h2>{HEADING_MY_SETTINGS}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="160">{TEXT_DISPLAY_NAME}:</td>
-	<td>
-		<input type="text" name="display_name" value="{DISPLAY_NAME}" style="width: 98%;" />
-		<script language="javascript" type="text/javascript">
-		document.details.display_name.focus();
-		</script>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_LANGUAGE}:</td>
-	<td>
-		<select name="language" style="width: 98%;">
-			<!-- BEGIN language_list_block -->
-			<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
-			<!-- END language_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_TIMEZONE}:</td>
-	<td>
-		<select name="timezone" style="width: 98%;">
-			<option value="-20">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN timezone_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END timezone_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_DATE_FORMAT}:</td>
-	<td>
-		<select name="date_format" style="width: 98%;">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN date_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END date_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_TIME_FORMAT}:</td>
-	<td>
-		<select name="time_format" style="width: 98%;">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN time_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END time_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="email" action="email.php" method="post">
-
-<h2>{HEADING_MY_EMAIL}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="160">{TEXT_CURRENT_PASSWORD}:</td>
-	<td>
-		<input type="password" name="current_password" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_EMAIL}:</td>
-	<td>
-		<input type="text" name="email" value="{EMAIL}" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="password" action="password.php" method="post">
-
-<h2 style="margin-top: 20px;">{HEADING_MY_PASSWORD}</h2>
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td width="160">{TEXT_CURRENT_PASSWORD}:</td>
-	<td>
-		<input type="password" name="current_password" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td width="160">{TEXT_NEW_PASSWORD}:</td>
-	<td>
-		<input type="password" name="new_password" style="width: 98%;" />
-	</td>
-</tr>
-<tr>
-	<td width="160">{TEXT_RETYPE_NEW_PASSWORD}:</td>
-	<td>
-		<input type="password" name="new_password2" style="width: 98%;" />
-	</td>
-</tr>
-
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
+<!-- BEGIN main_block -->
+<div class="content_box">
+	<form name="{FORM_NAME}" id="{FORM_NAME}" action="{ACTION_URL}" method="post">
+		{FTAN}
+		<fieldset class="be_section">
+			<legend class="content_legend">{HEADING_MY_SETTINGS}</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_DISPLAY_NAME}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="text" id="display_name" name="display_name" value="{DISPLAY_NAME}" /><br />
+					<script type="text/javascript">
+					document.details.display_name.focus();
+					</script>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_USERNAME}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="text" id="username" name="username" value="{USERNAME}" readonly="readonly" /><br />
+					<script type="text/javascript">
+					document.details.username.focus();
+					</script>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_LANGUAGE}:</label><br />
+				</div>
+				<div class="c60l">
+				<select name="language" id="language">
+					<!-- BEGIN language_list_block -->
+						<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
+					<!-- END language_list_block -->
+					</select>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_TIMEZONE}:</label><br />
+				</div>
+				<div class="c60l">
+					<select name="timezone" id="timezone">
+						<!-- BEGIN timezone_list_block -->
+							<option value="{VALUE}"{SELECTED}>{NAME}</option>
+						<!-- END timezone_list_block -->
+					</select>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_DATE_FORMAT}:</label><br />
+				</div>
+				<div class="c60l">
+					<select name="date_format" id="date_format">
+						<!-- BEGIN date_format_list_block -->
+							<option value="{VALUE}"{SELECTED}>{NAME}</option>
+						<!-- END date_format_list_block -->
+					</select>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_TIME_FORMAT}:</label><br />
+				</div>
+				<div class="c60l">
+					<select name="time_format" id="time_format">
+						<!-- BEGIN time_format_list_block -->
+							<option value="{VALUE}"{SELECTED}>{NAME}</option>
+						<!-- END time_format_list_block -->
+					</select>
+				</div>
+			</div>
+		</fieldset>
+		<fieldset class="be_section">
+			<legend class="content_legend">{HEADING_MY_EMAIL}</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_EMAIL}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="text" id="email" name="email" value="{EMAIL}" /><br />
+				</div>
+			</div>
+		</fieldset>
+		<fieldset class="be_section">
+			<legend class="content_legend">{HEADING_MY_PASSWORD}</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_NEW_PASSWORD}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="password" id="new_password_1" name="new_password_1" value="{EMPTY_STRING}" /><br />
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_RETYPE_NEW_PASSWORD}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="password" id="new_password_2" name="new_password_2" value="{EMPTY_STRING}" /><br />
+				</div>
+			</div>
+		</fieldset>
+		<fieldset class="be_section">
+			<legend class="content_legend">&nbsp;</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_CURRENT_PASSWORD}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="password" id="current_password" name="current_password" value="{EMPTY_STRING}" /><br />
+				</div>
+			</div>
+			<div class="subcolumns save_section">
+				<div class="c20l">
+					<input type="submit" id="submit" name="submit" value="{TEXT_SAVE}" />
+				</div>
+				<div class="c20l">
+					<input type="reset" id="reset" name="reset" value="{TEXT_RESET}" />
+				</div>
+			</div>
+		</fieldset>
+	</form>
+</div>
+
+<!-- END main_block -->
Index: branches/2.8.x/wb/templates/argos_theme/theme.css
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/theme.css	(revision 1312)
+++ branches/2.8.x/wb/templates/argos_theme/theme.css	(revision 1313)
@@ -138,4 +138,73 @@
 .list_page_language { width: 240px; }
 #multi_lingual { font-weight: bolder; }
 .right{ text-align: right; }
-.left{ text-align: left; }
\ No newline at end of file
+.left{ text-align: left; }
+
+/* Preference styles */
+div.content_box { position: relative; margin: 0px auto; }
+div.content_box form{background: transparent;  height: auto; }
+div.content_box fieldset { margin: 10px auto; }
+div.content_box legend {  color: #336699; font-size: 15px; font-weight:bold;padding: 0px 3px 0px 4px; }
+div.content_box label{ font-weight: 600; padding-left:4px; }
+div.content_box input{ width: 500px; }
+.be_section { border: 2px groove #6ea0d0; }
+
+/* set div layers indead tables */
+.subcolumns { width: 100%; overflow: hidden; }
+.subcolumns_oldgecko { width: 100%; float: left; }
+
+.c10l, .c20l, .c25l, .c33l, .c40l, .c38l, .c50l, .c60l, .c62l, .c66l, .c75l, .c80l { float: left; }
+.c10r, .c20r, .c25r, .c33r, .c40r, .c38r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r { float: right; margin-left: -5px; }
+
+  .c10l, .c10r { width: 10%; }
+  .c20l, .c20r { width: 21%; line-height:2em;}
+  .c40l, .c40r { width: 40%; }
+  .c60l, .c60r { width: 60%; }
+  .c25l, .c25r { width: 25%; }
+  .c33l, .c33r { width: 33.333%; }
+  .c50l, .c50r { width: 50%; }
+  .c66l, .c66r { width: 66.666%; }
+  .c38l, .c38r { width: 38.2%; }
+  .c62l, .c62r { width: 61.8%; }
+  .subc { padding: 0 0.5em; }
+  .subcl { padding: 0 1em 0 0; }
+  .subcr { padding: 0 0 0 1em; }
+
+.c80l, .c80r, .c90l, .c90r { width: 80%; }
+.c75l, .c75r, .c80l, .c80r { width: 75%; }
+
+.info { padding: 10px; margin-bottom: 0.5em; background: #f8f8f8; color: #666; font-size: 91.7%; }
+.note { border: 2px #484 solid; padding: 10px;margin: 10px auto; background: #efe; color: #040; }
+.important { border: 2px #884 solid; padding: 10px;  margin-bottom: 1em; background: #ffe; color: #440; }
+.warning { border: 2px #844 solid; padding: 10px; margin: 1em auto; background: #fee; color: #400; }
+
+.row_0 { background-color: transparent; }
+.row_1 { background-color: #ccddee; }
+
+#language,
+#timezone,
+#date_format,
+#time_format { min-width: 250px; }
+
+#display_name,
+#username,
+#email,
+#new_password_1,
+#new_password_2,
+#current_password { min-width: 250px;  }
+
+
+#submit,
+#reset { max-width: 100px; }
+
+	fieldset.be_section{
+      clear: both;
+      -moz-border-radius: 8px;
+      -khtml-border-radius: 8px;
+      -webkit-border-radius: 8px;
+      margin-top: 0.7em;
+      text-align: left;
+      background: #e1e1e1 none;
+   }
+
+.save_section { margin: 20px auto 5px auto; }
Index: branches/2.8.x/wb/templates/argos_theme/templates/preferences.htt
===================================================================
--- branches/2.8.x/wb/templates/argos_theme/templates/preferences.htt	(revision 1312)
+++ branches/2.8.x/wb/templates/argos_theme/templates/preferences.htt	(revision 1313)
@@ -1,127 +1,130 @@
 <!-- BEGIN main_block -->
+<div class="content_box">
+	<form name="{FORM_NAME}" id="{FORM_NAME}" action="{ACTION_URL}" method="post">
+		{FTAN}
+		<fieldset class="be_section">
+			<legend class="content_legend">{HEADING_MY_SETTINGS}</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_DISPLAY_NAME}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="text" id="display_name" name="display_name" value="{DISPLAY_NAME}" /><br />
+					<script type="text/javascript">
+					document.details.display_name.focus();
+					</script>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_USERNAME}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="text" id="username" name="username" value="{USERNAME}" readonly="readonly" /><br />
+					<script type="text/javascript">
+					document.details.username.focus();
+					</script>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_LANGUAGE}:</label><br />
+				</div>
+				<div class="c60l">
+				<select name="language" id="language">
+					<!-- BEGIN language_list_block -->
+						<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
+					<!-- END language_list_block -->
+					</select>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_TIMEZONE}:</label><br />
+				</div>
+				<div class="c60l">
+					<select name="timezone" id="timezone">
+						<!-- BEGIN timezone_list_block -->
+							<option value="{VALUE}"{SELECTED}>{NAME}</option>
+						<!-- END timezone_list_block -->
+					</select>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_DATE_FORMAT}:</label><br />
+				</div>
+				<div class="c60l">
+					<select name="date_format" id="date_format">
+						<!-- BEGIN date_format_list_block -->
+							<option value="{VALUE}"{SELECTED}>{NAME}</option>
+						<!-- END date_format_list_block -->
+					</select>
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_TIME_FORMAT}:</label><br />
+				</div>
+				<div class="c60l">
+					<select name="time_format" id="time_format">
+						<!-- BEGIN time_format_list_block -->
+							<option value="{VALUE}"{SELECTED}>{NAME}</option>
+						<!-- END time_format_list_block -->
+					</select>
+				</div>
+			</div>
+		</fieldset>
+		<fieldset class="be_section">
+			<legend class="content_legend">{HEADING_MY_EMAIL}</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_EMAIL}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="text" id="email" name="email" value="{EMAIL}" /><br />
+				</div>
+			</div>
+		</fieldset>
+		<fieldset class="be_section">
+			<legend class="content_legend">{HEADING_MY_PASSWORD}</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_NEW_PASSWORD}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="password" id="new_password_1" name="new_password_1" value="{EMPTY_STRING}" /><br />
+				</div>
+			</div>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_RETYPE_NEW_PASSWORD}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="password" id="new_password_2" name="new_password_2" value="{EMPTY_STRING}" /><br />
+				</div>
+			</div>
+		</fieldset>
+		<fieldset class="be_section">
+			<legend class="content_legend">&nbsp;</legend>
+			<div class="subcolumns">
+				<div class="c20l">
+					<label>{TEXT_CURRENT_PASSWORD}:</label><br />
+				</div>
+				<div class="c60l">
+					<input type="password" id="current_password" name="current_password" value="{EMPTY_STRING}" /><br />
+				</div>
+			</div>
+			<div class="subcolumns save_section">
+				<div class="c20l">
+					<input type="submit" id="submit" name="submit" value="{TEXT_SAVE}" />
+				</div>
+				<div class="c20l">
+					<input type="reset" id="reset" name="reset" value="{TEXT_RESET}" />
+				</div>
+			</div>
+		</fieldset>
+	</form>
+</div>
 
-<form name="details" action="details.php" method="post">
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td colspan="2"><h2>{HEADING_MY_SETTINGS}</h2></td>
-</tr>
-<tr>
-	<td width="160">{TEXT_DISPLAY_NAME}:</td>
-	<td>
-		<input type="text" name="display_name" value="{DISPLAY_NAME}" style="width: 98%;" />
-		<script type="text/javascript">
-		document.details.display_name.focus();
-		</script>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_LANGUAGE}:</td>
-	<td>
-		<select name="language" style="width: 98%;">
-			<!-- BEGIN language_list_block -->
-			<option value="{CODE}"{SELECTED} style="background: url({FLAG}.png) no-repeat center left; padding-left: 20px;">{NAME} ({CODE})</option>
-			<!-- END language_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_TIMEZONE}:</td>
-	<td>
-		<select name="timezone" style="width: 98%;">
-			<option value="-20">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN timezone_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END timezone_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_DATE_FORMAT}:</td>
-	<td>
-		<select name="date_format" style="width: 98%;">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN date_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END date_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>{TEXT_TIME_FORMAT}:</td>
-	<td>
-		<select name="time_format" style="width: 98%;">
-			<option value="">{TEXT_PLEASE_SELECT}...</option>
-			<!-- BEGIN time_format_list_block -->
-				<option value="{VALUE}" {SELECTED}>{NAME}</option>
-			<!-- END time_format_list_block -->
-		</select>
-	</td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="email" action="email.php" method="post">
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td colspan="2"><h2>{HEADING_MY_EMAIL}</h2></td>
-</tr>
-<tr>
-	<td width="160">{TEXT_CURRENT_PASSWORD}:</td>
-	<td><input type="password" name="current_password" style="width: 98%;" /></td>
-</tr>
-<tr>
-	<td>{TEXT_EMAIL}:</td>
-	<td><input type="text" name="email" value="{EMAIL}" style="width: 98%;" /></td>
-</tr>
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<form name="password" action="password.php" method="post">
-
-<table cellpadding="5" cellspacing="0" border="0" width="100%">
-<tr>
-	<td colspan="2"><h2>{HEADING_MY_PASSWORD}</h2></td>
-</tr>
-<tr>
-	<td width="160">{TEXT_CURRENT_PASSWORD}:</td>
-	<td><input type="password" name="current_password" style="width: 98%;" /></td>
-</tr>
-<tr>
-	<td width="160">{TEXT_NEW_PASSWORD}:</td>
-	<td><input type="password" name="new_password" style="width: 98%;" /></td>
-</tr>
-<tr>
-	<td width="160">{TEXT_RETYPE_NEW_PASSWORD}:</td>
-	<td><input type="password" name="new_password2" style="width: 98%;" /></td>
-</tr>
-
-<tr>
-	<td>&nbsp;</td>
-	<td>
-		<input type="submit" name="submit" value="{TEXT_SAVE}" />
-		<input type="reset" name="reset" value="{TEXT_RESET}" />
-	</td>
-</tr>
-</table>
-
-</form>
-
-<!-- END main_block -->
\ No newline at end of file
+<!-- END main_block -->
Index: branches/2.8.x/wb/templates
===================================================================
--- branches/2.8.x/wb/templates	(revision 1312)
+++ branches/2.8.x/wb/templates	(revision 1313)

Property changes on: branches/2.8.x/wb/templates
___________________________________________________________________
Added: svn:ignore
## -0,0 +1 ##
+classic_theme
Index: branches/2.8.x/wb/languages/FI.php
===================================================================
--- branches/2.8.x/wb/languages/FI.php	(revision 1312)
+++ branches/2.8.x/wb/languages/FI.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'S&auml;hp&ouml;stiosoite p&auml;ivitetty';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Nykyinen salasana v&auml;&auml;r&auml;';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Salasanan vaiho onnistui';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Sivupohjan voi vaihtaa asetukset-kohdasta';
 
Index: branches/2.8.x/wb/languages/EN.php
===================================================================
--- branches/2.8.x/wb/languages/EN.php	(revision 1312)
+++ branches/2.8.x/wb/languages/EN.php	(revision 1313)
@@ -1,596 +1,596 @@
-<?php
-/**
- *
- * @category        framework
- * @package         language
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2010, 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 4.3.4 and higher
- * @version         $Id$
- * @filesource		$HeadURL$
- * @lastmodified    $Date$
- *
- */
-
-// use languageedit-module to modify this file
-
-// Define that this file is loaded
-if(!defined('LANGUAGE_LOADED')) {
-define('LANGUAGE_LOADED', true);
-}
-
-// Set the language information
-$language_code = 'EN';
-$language_name = 'English';
-$language_version = '2.8';
-$language_platform = '2.8.x';
-$language_author = 'Ryan Djurovich, Christian Sommer';
-$language_license = 'GNU General Public License';
-
-// Menu titles
-$MENU['START'] = 'Start';
-$MENU['PAGES'] = 'Pages';
-$MENU['MEDIA'] = 'Media';
-$MENU['ADDONS'] = 'Add-ons';
-$MENU['MODULES'] = 'Modules';
-$MENU['TEMPLATES'] = 'Templates';
-$MENU['LANGUAGES'] = 'Languages';
-$MENU['PREFERENCES'] = 'Preferences';
-$MENU['SETTINGS'] = 'Settings';
-$MENU['ADMINTOOLS'] = 'Admin-Tools';
-$MENU['ACCESS'] = 'Access';
-$MENU['USERS'] = 'Users';
-$MENU['GROUPS'] = 'Groups';
-$MENU['HELP'] = 'Help';
-$MENU['VIEW'] = 'View';
-$MENU['LOGOUT'] = 'Log-out';
-$MENU['LOGIN'] = 'Login';
-$MENU['FORGOT'] = 'Retrieve Login Details';
-
-// Section overviews
-$OVERVIEW['START'] = 'Administration overview';
-$OVERVIEW['PAGES'] = 'Manage your websites pages...';
-$OVERVIEW['MEDIA'] = 'Manage files stored in the media folder...';
-$OVERVIEW['MODULES'] = 'Manage WebsiteBaker modules...';
-$OVERVIEW['TEMPLATES'] = 'Change the look and feel of your website with templates...';
-$OVERVIEW['LANGUAGES'] = 'Manage WebsiteBaker languages...';
-$OVERVIEW['PREFERENCES'] = 'Change preferences such as email address, password, etc... ';
-$OVERVIEW['SETTINGS'] = 'Changes settings for WebsiteBaker...';
-$OVERVIEW['USERS'] = 'Manage users who can log-in to WebsiteBaker...';
-$OVERVIEW['GROUPS'] = 'Manage user groups and their system permissions...';
-$OVERVIEW['HELP'] = 'Got a question? Find your answer...';
-$OVERVIEW['VIEW'] = 'Quickly view and browse your website in a new window...';
-$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...';
-
-// Headings
-$HEADING['MODIFY_DELETE_PAGE'] = 'Modify/Delete Page';
-$HEADING['DELETED_PAGES'] = 'Deleted Pages';
-$HEADING['ADD_PAGE'] = 'Add Page';
-$HEADING['ADD_HEADING'] = 'Add Heading';
-$HEADING['MODIFY_PAGE'] = 'Modify Page';
-$HEADING['MODIFY_PAGE_SETTINGS'] = 'Modify Page Settings';
-$HEADING['MODIFY_ADVANCED_PAGE_SETTINGS'] = 'Modify Advanced Page Settings';
-$HEADING['MANAGE_SECTIONS'] = 'Manage Sections';
-$HEADING['MODIFY_INTRO_PAGE'] = 'Modify Intro Page';
-
-$HEADING['BROWSE_MEDIA'] = 'Browse Media';
-$HEADING['CREATE_FOLDER'] = 'Create Folder';
-$HEADING['UPLOAD_FILES'] = 'Upload File(s)';
-
-$HEADING['INSTALL_MODULE'] = 'Install Module';
-$HEADING['UNINSTALL_MODULE'] = 'Uninstall Module';
-$HEADING['MODULE_DETAILS'] = 'Module Details';
-
-$HEADING['INSTALL_TEMPLATE'] = 'Install Template';
-$HEADING['UNINSTALL_TEMPLATE'] = 'Uninstall Template';
-$HEADING['TEMPLATE_DETAILS'] = 'Template Details';
-
-$HEADING['INSTALL_LANGUAGE'] = 'Install Language';
-$HEADING['UNINSTALL_LANGUAGE'] = 'Uninstall Language';
-$HEADING['LANGUAGE_DETAILS'] = 'Language Details';
-
-$HEADING['MY_SETTINGS'] = 'My Settings';
-$HEADING['MY_EMAIL'] = 'My Email';
-$HEADING['MY_PASSWORD'] = 'My Password';
-
-$HEADING['GENERAL_SETTINGS'] = 'General Settings';
-$HEADING['DEFAULT_SETTINGS'] = 'Default Settings';
-$HEADING['SEARCH_SETTINGS'] = 'Search Settings';
-$HEADING['FILESYSTEM_SETTINGS'] = 'Filesystem Settings';
-$HEADING['SERVER_SETTINGS'] = 'Server Settings';
-$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings';
-$HEADING['ADMINISTRATION_TOOLS'] = 'Administration Tools';
-
-$HEADING['MODIFY_DELETE_USER'] = 'Modify/Delete User';
-$HEADING['ADD_USER'] = 'Add User';
-$HEADING['MODIFY_USER'] = 'Modify User';
-
-$HEADING['MODIFY_DELETE_GROUP'] = 'Modify/Delete Group';
-$HEADING['ADD_GROUP'] = 'Add Group';
-$HEADING['MODIFY_GROUP'] = 'Modify Group';
-
-$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
-$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
-
-// Other text
-$TEXT['OPEN'] = 'Open';
-$TEXT['ADD'] = 'Add';
-$TEXT['MODIFY'] = 'Modify';
-$TEXT['SETTINGS'] = 'Settings';
-$TEXT['DELETE'] = 'Delete';
-$TEXT['SAVE'] = 'Save';
-$TEXT['RESET'] = 'Reset';
-$TEXT['LOGIN'] = 'Login';
-$TEXT['RELOAD'] = 'Reload';
-$TEXT['CANCEL'] = 'Cancel';
-$TEXT['NAME'] = 'Name';
-$TEXT['PLEASE_SELECT'] = 'Please select';
-$TEXT['TITLE'] = 'Title';
-$TEXT['PARENT'] = 'Parent';
-$TEXT['TYPE'] = 'Type';
-$TEXT['VISIBILITY'] = 'Visibility';
-$TEXT['PRIVATE'] = 'Private';
-$TEXT['PUBLIC'] = 'Public';
-$TEXT['NONE'] = 'None';
-$TEXT['NONE_FOUND'] = 'None Found';
-$TEXT['CURRENT'] = 'Current';
-$TEXT['CHANGE'] = 'Change';
-$TEXT['WINDOW'] = 'Window';
-$TEXT['DESCRIPTION'] = 'Description';
-$TEXT['KEYWORDS'] = 'Keywords';
-$TEXT['ADMINISTRATORS'] = 'Administrators';
-$TEXT['PRIVATE_VIEWERS'] = 'Private Viewers';
-$TEXT['EXPAND'] = 'Expand';
-$TEXT['COLLAPSE'] = 'Collapse';
-$TEXT['MOVE_UP'] = 'Move Up';
-$TEXT['MOVE_DOWN'] = 'Move Down';
-$TEXT['RENAME'] = 'Rename';
-$TEXT['MODIFY_SETTINGS'] = 'Modify Settings';
-$TEXT['MODIFY_CONTENT'] = 'Modify Content';
-$TEXT['VIEW'] = 'View';
-$TEXT['UP'] = 'Up';
-$TEXT['FORGOTTEN_DETAILS'] = 'Forget your details?';
-$TEXT['NEED_TO_LOGIN'] = 'Need to log-in?';
-$TEXT['SEND_DETAILS'] = 'Send Details';
-$TEXT['USERNAME'] = 'Username';
-$TEXT['PASSWORD'] = 'Password';
-$TEXT['HOME'] = 'Home';
-$TEXT['TARGET_FOLDER'] = 'Target folder';
-$TEXT['OVERWRITE_EXISTING'] = 'Overwrite existing';
-$TEXT['FILE'] = 'File';
-$TEXT['FILES'] = 'Files';
-$TEXT['FOLDER'] = 'Folder';
-$TEXT['FOLDERS'] = 'Folders';
-$TEXT['CREATE_FOLDER'] = 'Create Folder';
-$TEXT['UPLOAD_FILES'] = 'Upload File(s)';
-$TEXT['CURRENT_FOLDER'] = 'Current Folder';
-$TEXT['TO'] = 'To';
-$TEXT['FROM'] = 'From';
-$TEXT['INSTALL'] = 'Install';
-$TEXT['UNINSTALL'] = 'Uninstall';
-$TEXT['VIEW_DETAILS'] = 'View Details';
-$TEXT['DISPLAY_NAME'] = 'Display Name';
-$TEXT['AUTHOR'] = 'Author';
-$TEXT['VERSION'] = 'Version';
-$TEXT['DESIGNED_FOR'] = 'Designed For';
-$TEXT['DESCRIPTION'] = 'Description';
-$TEXT['EMAIL'] = 'Email';
-$TEXT['LANGUAGE'] = 'Language';
-$TEXT['TIMEZONE'] = 'Timezone';
-$TEXT['CURRENT_PASSWORD'] = 'Current Password';
-$TEXT['NEW_PASSWORD'] = 'New Password';
-$TEXT['RETYPE_NEW_PASSWORD'] = 'Re-type New Password';
-$TEXT['ACTIVE'] = 'Active';
-$TEXT['DISABLED'] = 'Disabled';
-$TEXT['ENABLED'] = 'Enabled';
-$TEXT['RETYPE_PASSWORD'] = 'Re-type Password';
-$TEXT['GROUP'] = 'Group';
-$TEXT['SYSTEM_PERMISSIONS'] = 'System Permissions';
-$TEXT['MODULE_PERMISSIONS'] = 'Module Permissions';
-$TEXT['SHOW_ADVANCED'] = 'Show Advanced Options';
-$TEXT['HIDE_ADVANCED'] = 'Hide Advanced Options';
-$TEXT['BASIC'] = 'Basic';
-$TEXT['ADVANCED'] = 'Advanced';
-$TEXT['WEBSITE'] = 'Website';
-$TEXT['DEFAULT'] = 'Default';
-$TEXT['KEYWORDS'] = 'Keywords';
-$TEXT['TEXT'] = 'Text';
-$TEXT['HEADER'] = 'Header';
-$TEXT['FOOTER'] = 'Footer';
-$TEXT['TEMPLATE'] = 'Template';
-$TEXT['THEME'] = 'Backend-Theme';
-$TEXT['INSTALLATION'] = 'Installation';
-$TEXT['DATABASE'] = 'Database';
-$TEXT['HOST'] = 'Host';
-$TEXT['INTRO'] = 'Intro';
-$TEXT['PAGE'] = 'Page';
-$TEXT['SIGNUP'] = 'Sign-up';
-$TEXT['PHP_ERROR_LEVEL'] = 'PHP Error Reporting Level';
-$TEXT['ADMIN'] = 'Admin';
-$TEXT['PATH'] = 'Path';
-$TEXT['URL'] = 'URL';
-$TEXT['FRONTEND'] = 'Front-end';
-$TEXT['EXTENSION'] = 'Extension';
-$TEXT['TABLE_PREFIX'] = 'Table Prefix';
-$TEXT['CHANGES'] = 'Changes';
-$TEXT['ADMINISTRATION'] = 'Administration';
-$TEXT['FORGOT_DETAILS'] = 'Forget Details?';
-$TEXT['LOGGED_IN'] = 'Logged-In';
-$TEXT['WELCOME_BACK'] = 'Welcome back';
-$TEXT['FULL_NAME'] = 'Full Name';
-$TEXT['ACCOUNT_SIGNUP'] = 'Account Sign-Up';
-$TEXT['LINK'] = 'Link';
-$TEXT['ANCHOR'] = 'Anchor';
-$TEXT['TARGET'] = 'Target';
-$TEXT['NEW_WINDOW'] = 'New Window';
-$TEXT['SAME_WINDOW'] = 'Same Window';
-$TEXT['TOP_FRAME'] = 'Top Frame';
-$TEXT['PAGE_LEVEL_LIMIT'] = 'Page Level Limit';
-$TEXT['SUCCESS'] = 'Success';
-$TEXT['ERROR'] = 'Error';
-$TEXT['ARE_YOU_SURE'] = 'Are you sure?';
-$TEXT['YES'] = 'Yes';
-$TEXT['NO'] = 'No';
-$TEXT['SYSTEM_DEFAULT'] = 'System Default';
-$TEXT['PAGE_TITLE'] = 'Page Title';
-$TEXT['MENU_TITLE'] = 'Menu Title';
-$TEXT['ACTIONS'] = 'Actions';
-$TEXT['UNKNOWN'] = 'Unknown';
-$TEXT['BLOCK'] = 'Block';
-$TEXT['SEARCH'] = 'Search';
-$TEXT['SEARCHING'] = 'Searching';
-$TEXT['POST'] = 'Post';
-$TEXT['COMMENT'] = 'Comment';
-$TEXT['COMMENTS'] = 'Comments';
-$TEXT['COMMENTING'] = 'Commenting';
-$TEXT['SHORT'] = 'Short';
-$TEXT['LONG'] = 'Long';
-$TEXT['LOOP'] = 'Loop';
-$TEXT['FIELD'] = 'Field';
-$TEXT['REQUIRED'] = 'Required';
-$TEXT['LENGTH'] = 'Length';
-$TEXT['MESSAGE'] = 'Message';
-$TEXT['SUBJECT'] = 'Subject';
-$TEXT['MATCH'] = 'Match';
-$TEXT['ALL_WORDS'] = 'All Words';
-$TEXT['ANY_WORDS'] = 'Any Words';
-$TEXT['EXACT_MATCH'] = 'Exact Match';
-$TEXT['SHOW'] = 'Show';
-$TEXT['HIDE'] = 'Hide';
-$TEXT['START_PUBLISHING'] = 'Start Publishing';
-$TEXT['FINISH_PUBLISHING'] = 'Finish Publishing';
-$TEXT['DATE'] = 'Date';
-$TEXT['START'] = 'Start';
-$TEXT['END'] = 'End';
-$TEXT['IMAGE'] = 'Image';
-$TEXT['ICON'] = 'Icon';
-$TEXT['SECTION'] = 'Section';
-$TEXT['DATE_FORMAT'] = 'Date Format';
-$TEXT['TIME_FORMAT'] = 'Time Format';
-$TEXT['RESULTS'] = 'Results';
-$TEXT['RESIZE'] = 'Re-size';
-$TEXT['MANAGE'] = 'Manage';
-$TEXT['CODE'] = 'Code';
-$TEXT['WIDTH'] = 'Width';
-$TEXT['HEIGHT'] = 'Height';
-$TEXT['MORE'] = 'More';
-$TEXT['READ_MORE'] = 'Read More';
-$TEXT['CHANGE_SETTINGS'] = 'Change Settings';
-$TEXT['CURRENT_PAGE'] = 'Current Page';
-$TEXT['CLOSE'] = 'Close';
-$TEXT['INTRO_PAGE'] = 'Intro Page';
-$TEXT['INSTALLATION_URL'] = 'Installation URL';
-$TEXT['INSTALLATION_PATH'] = 'Installation Path';
-$TEXT['PAGE_EXTENSION'] = 'Page Extension';
-$TEXT['NO_RESULTS'] = 'No Results';
-$TEXT['WEBSITE_TITLE'] = 'Website Title';
-$TEXT['WEBSITE_DESCRIPTION'] = 'Website Description';
-$TEXT['WEBSITE_KEYWORDS'] = 'Website Keywords';
-$TEXT['WEBSITE_HEADER'] = 'Website Header';
-$TEXT['WEBSITE_FOOTER'] = 'Website Footer';
-$TEXT['RESULTS_HEADER'] = 'Results Header';
-$TEXT['RESULTS_LOOP'] = 'Results Loop';
-$TEXT['RESULTS_FOOTER'] = 'Results Footer';
-$TEXT['LEVEL'] = 'Level';
-$TEXT['NOT_FOUND'] = 'Not Found';
-$TEXT['PAGE_SPACER'] = 'Page Spacer';
-$TEXT['MATCHING'] = 'Matching';
-$TEXT['TEMPLATE_PERMISSIONS'] = 'Template Permissions';
-$TEXT['PAGES_DIRECTORY'] = 'Pages Directory';
-$TEXT['MEDIA_DIRECTORY'] = 'Media Directory';
-$TEXT['FILE_MODE'] = 'File Mode';
-$TEXT['USER'] = 'User';
-$TEXT['OTHERS'] = 'Others';
-$TEXT['READ'] = 'Read';
-$TEXT['WRITE'] = 'Write';
-$TEXT['EXECUTE'] = 'Execute';
-$TEXT['SMART_LOGIN'] = 'Smart Login';
-$TEXT['REMEMBER_ME'] = 'Remember Me';
-$TEXT['FILESYSTEM_PERMISSIONS'] = 'Filesystem Permissions';
-$TEXT['DIRECTORIES'] = 'Directories';
-$TEXT['DIRECTORY_MODE'] = 'Directory Mode';
-$TEXT['LIST_OPTIONS'] = 'List Options';
-$TEXT['OPTION'] = 'Option';
-$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'Allow Multiple Selections';
-$TEXT['TEXTFIELD'] = 'Textfield';
-$TEXT['TEXTAREA'] = 'Textarea';
-$TEXT['SELECT_BOX'] = 'Select Box';
-$TEXT['CHECKBOX_GROUP'] = 'Checkbox Group';
-$TEXT['RADIO_BUTTON_GROUP'] = 'Radio Button Group';
-$TEXT['SIZE'] = 'Size';
-$TEXT['DEFAULT_TEXT'] = 'Default Text';
-$TEXT['SEPERATOR'] = 'Separator';
-$TEXT['BACK'] = 'Back';
-$TEXT['UNDER_CONSTRUCTION'] = 'Under Construction';
-$TEXT['MULTISELECT'] = 'Multi-select';
-$TEXT['SHORT_TEXT'] = 'Short Text';
-$TEXT['LONG_TEXT'] = 'Long Text';
-$TEXT['HOMEPAGE_REDIRECTION'] = 'Homepage Redirection';
-$TEXT['HEADING'] = 'Heading';
-$TEXT['MULTIPLE_MENUS'] = 'Multiple Menus';
-$TEXT['REGISTERED'] = 'Registered';
-$TEXT['SECTION_BLOCKS'] = 'Section Blocks';
-$TEXT['REGISTERED_VIEWERS'] = 'Registered Viewers';
-$TEXT['ALLOWED_VIEWERS'] = 'Allowed Viewers';
-$TEXT['SUBMISSION_ID'] = 'Submission ID';
-$TEXT['SUBMISSIONS'] = 'Submissions';
-$TEXT['SUBMITTED'] = 'Submitted';
-$TEXT['MAX_SUBMISSIONS_PER_HOUR'] = 'Max. Submissions Per Hour';
-$TEXT['SUBMISSIONS_STORED_IN_DATABASE'] = 'Submissions Stored In Database';
-$TEXT['EMAIL_ADDRESS'] = 'Email Address';
-$TEXT['CUSTOM'] = 'Custom';
-$TEXT['ANONYMOUS'] = 'Anonymous';
-$TEXT['SERVER_OPERATING_SYSTEM'] = 'Server Operating System';
-$TEXT['WORLD_WRITEABLE_FILE_PERMISSIONS'] = 'World-writeable file permissions';
-$TEXT['LINUX_UNIX_BASED'] = 'Linux/Unix based';
-$TEXT['WINDOWS'] = 'Windows';
-$TEXT['HOME_FOLDER'] = 'Home Folder';
-$TEXT['HOME_FOLDERS'] = 'Home Folders';
-$TEXT['PAGE_TRASH'] = 'Page Trash';
-$TEXT['INLINE'] = 'In-line';
-$TEXT['SEPARATE'] = 'Separate';
-$TEXT['DELETED'] = 'Deleted';
-$TEXT['VIEW_DELETED_PAGES'] = 'View Deleted Pages';
-$TEXT['EMPTY_TRASH'] = 'Empty Trash';
-$TEXT['TRASH_EMPTIED'] = 'Trash Emptied';
-$TEXT['ADD_SECTION'] = 'Add Section';
-$TEXT['POST_HEADER'] = 'Post Header';
-$TEXT['POST_FOOTER'] = 'Post Footer';
-$TEXT['POSTS_PER_PAGE'] = 'Posts Per Page';
-$TEXT['RESIZE_IMAGE_TO'] = 'Resize Image To';
-$TEXT['UNLIMITED'] = 'Unlimited';
-$TEXT['OF'] = 'Of';
-$TEXT['OUT_OF'] = 'Out Of';
-$TEXT['NEXT'] = 'Next';
-$TEXT['PREVIOUS'] = 'Previous';
-$TEXT['NEXT_PAGE'] = 'Next Page';
-$TEXT['PREVIOUS_PAGE'] = 'Previous Page';
-$TEXT['ON'] = 'On';
-$TEXT['LAST_UPDATED_BY'] = 'Last Updated By';
-$TEXT['RESULTS_FOR'] = 'Results For';
-$TEXT['TIME'] = 'Time';
-$TEXT['REDIRECT_AFTER'] = 'Redirect after';
-$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style';
-$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor';
-$TEXT['SERVER_EMAIL'] = 'Server Email';
-$TEXT['MENU'] = 'Menu';
-$TEXT['MANAGE_GROUPS'] = 'Manage Groups';
-$TEXT['MANAGE_USERS'] = 'Manage Users';
-$TEXT['PAGE_LANGUAGES'] = 'Page Languages';
-$TEXT['HIDDEN'] = 'Hidden';
-$TEXT['MAIN'] = 'Main';
-$TEXT['RENAME_FILES_ON_UPLOAD'] = 'Rename Files On Upload';
-$TEXT['APP_NAME'] = 'Application Name';
-$TEXT['SESSION_IDENTIFIER'] = 'Session Identifier';
-$TEXT['SEC_ANCHOR'] = 'Section-Anchor text';
-$TEXT['BACKUP'] = 'Backup';
-$TEXT['RESTORE'] = 'Restore';
-$TEXT['BACKUP_DATABASE'] = 'Backup Database';
-$TEXT['RESTORE_DATABASE'] = 'Restore Database';
-$TEXT['BACKUP_ALL_TABLES'] = 'Backup all tables in database';
-$TEXT['BACKUP_WB_SPECIFIC'] = 'Backup only WB-specific tables';
-$TEXT['BACKUP_MEDIA'] = 'Backup Media';
-$TEXT['RESTORE_MEDIA'] = 'Restore Media';
-$TEXT['ADMINISTRATION_TOOL'] = 'Administration tool';
-$TEXT['CAPTCHA_VERIFICATION'] = 'Captcha Verification';
-$TEXT['VERIFICATION'] = 'Verification';
-$TEXT['DEFAULT_CHARSET'] = 'Default Charset';
-$TEXT['CHARSET'] = 'Charset';
-$TEXT['MODULE_ORDER'] = 'Module-order for searching';
-$TEXT['MAX_EXCERPT'] = 'Max lines of excerpt';
-$TEXT['TIME_LIMIT'] = 'Max time to gather excerpts per module';
-$TEXT['PUBL_START_DATE'] = 'Start date';
-$TEXT['PUBL_END_DATE'] = 'End date';
-$TEXT['CALENDAR'] = 'Calendar';
-$TEXT['DELETE_DATE'] = 'Delete date';
-$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail providers (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by WebsiteBaker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.';
-$TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail';
-$TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name';
-$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Settings:</strong><br />The settings below are only required if you want to send mails via <acronym title="Simple mail transfer protocol">SMTP</acronym>. If you do not know your SMTP host or you are not sure about the required settings, simply stay with the default mail routine: PHP MAIL.';
-$TEXT['WBMAILER_FUNCTION'] = 'Mail Routine';
-$TEXT['WBMAILER_SMTP_HOST'] = 'SMTP Host';
-$TEXT['WBMAILER_PHP'] = 'PHP MAIL';
-$TEXT['WBMAILER_SMTP'] = 'SMTP';
-$TEXT['WBMAILER_SMTP_AUTH'] = 'SMTP Authentification';
-$TEXT['WBMAILER_SMTP_AUTH_NOTICE'] = 'only activate if your SMTP host requires authentication';
-$TEXT['WBMAILER_SMTP_USERNAME'] = 'SMTP Username';
-$TEXT['WBMAILER_SMTP_PASSWORD'] = 'SMTP Password';
-$TEXT['PLEASE_LOGIN'] = 'Please login';
-$TEXT['CAP_EDIT_CSS'] = 'Edit CSS';
-$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
-$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
-$TEXT['CODE_SNIPPET'] = "Code-snippet";
-$TEXT['REQUIREMENT'] = "Requirement";
-$TEXT['INSTALLED'] = "installed";
-$TEXT['NOT_INSTALLED'] = "not installed";
-$TEXT['ADDON'] = "Add-On";
-$TEXT['EXTENSION'] = "Extension";
-$TEXT['UNZIP_FILE'] = "Upload and unpack a zip archive";
-$TEXT['DELETE_ZIP'] = "Delete zip archive after unpacking";
-
-// Success/error messages
-$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, you do not have permissions to view this page';
-$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'] = 'Sorry, no active content to display';
-// NOTE THE MESSAGE CALL PHRASE IS KEPT MIS-SPELLED (DUE TO CODE IMPACT), BUT THE MESSAGE HAS BEEN FIXED
-$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = 'Insufficient privileges to be here';
-
-$MESSAGE['LOGIN']['BOTH_BLANK'] = 'Please enter your username and password below';
-$MESSAGE['LOGIN']['USERNAME_BLANK'] = 'Please enter a username';
-$MESSAGE['LOGIN']['PASSWORD_BLANK'] = 'Please enter a password';
-$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = 'Supplied username too short';
-$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = 'Supplied password too short';
-$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = 'Supplied username too long';
-$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = 'Supplied password too long';
-$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = 'Username or password incorrect';
-
-$MESSAGE['SIGNUP']['NO_EMAIL'] = 'You must enter an email address';
-$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO'] = 'Your login details...';
-$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO'] = <<< EOT
-Hello {LOGIN_DISPLAY_NAME},
-
-Your '{LOGIN_WEBSITE_TITLE}' login details are:
-Username: {LOGIN_NAME}
-Password: {LOGIN_PASSWORD}
-
-Your password has been set to the one above.
-This means that your old password will no longer work.
-
-If you have received this message in error, please delete it immediately.
-EOT;
-
-$MESSAGE['FORGOT_PASS']['NO_DATA'] = 'Please enter your email address below';
-$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = 'The email that you entered cannot be found in the database';
-$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = 'Unable to email password, please contact system administrator';
-$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = 'Your username and password have been sent to your email address';
-$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = 'Password cannot be reset more than once per hour, sorry';
-
-$MESSAGE['START']['WELCOME_MESSAGE'] = 'Welcome to WebsiteBaker Administration';
-$MESSAGE['START']['INSTALL_DIR_EXISTS'] = 'Warning, Installation Directory Still Exists!';
-$MESSAGE['START']['CURRENT_USER'] = 'You are currently logged in as:';
-
-$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = 'Unable to open the configuration file';
-$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = 'Cannot write to configuration file';
-$MESSAGE['SETTINGS']['SAVED'] = 'Settings saved successfully';
-$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = 'Please Note: Pressing this button resets all unsaved changes';
-$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = 'Please note: this is only recommended for testing environments';
-
-$MESSAGE['USERS']['ADDED'] = 'User added successfully';
-$MESSAGE['USERS']['SAVED'] = 'User saved successfully';
-$MESSAGE['USERS']['DELETED'] = 'User deleted successfully';
-$MESSAGE['USERS']['NO_GROUP'] = 'No group was selected';
-$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = 'The username you entered was too short';
-$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = 'The password you entered was too short';
-$MESSAGE['USERS']['PASSWORD_MISMATCH'] = 'The passwords you entered do not match';
-$MESSAGE['USERS']['INVALID_EMAIL'] = 'The email address you entered is invalid';
-$MESSAGE['USERS']['EMAIL_TAKEN'] = 'The email you entered is already in use';
-$MESSAGE['USERS']['USERNAME_TAKEN'] = 'The username you entered is already taken';
-// NOTE THE DOUBLE QUOTES USED TO ENTER AN APOSTROPHE HERE - OK? OTHERWISE CAN RE-PHRASE THE MESSAGE
-$MESSAGE['USERS']['CHANGING_PASSWORD'] = "Please note: You should only enter values in the above fields if you wish to change this user's password";
-$MESSAGE['USERS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected user?';
-
-$MESSAGE['GROUPS']['ADDED'] = 'Group added successfully';
-$MESSAGE['GROUPS']['SAVED'] = 'Group saved successfully';
-$MESSAGE['GROUPS']['DELETED'] = 'Group deleted successfully';
-$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = 'Group name is blank';
-$MESSAGE['GROUPS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected group (and any users that belong to it)?';
-$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = 'No groups found';
-$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = 'Group name already exists';
-
-$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = 'Details saved successfully';
-$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email updated successfully';
-$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'The (current) password you entered is incorrect';
-$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Password changed successfully';
-
-$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section';
-
-$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = 'Cannot include ../ in the folder name';
-$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = 'Directory does not exist';
-$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target';
-$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = 'Cannot include ../ in the name';
-$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = 'Cannot use index.php as the name';
-$MESSAGE['MEDIA']['NONE_FOUND'] = 'No media found in the current folder';
-$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = 'File not found';
-$MESSAGE['MEDIA']['DELETED_FILE'] = 'File deleted successfully';
-$MESSAGE['MEDIA']['DELETED_DIR'] = 'Folder deleted successfully';
-$MESSAGE['MEDIA']['CONFIRM_DELETE'] = 'Are you sure you want to delete the following file or folder?';
-$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = 'Cannot delete the selected file';
-$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = 'Cannot delete the selected folder';
-$MESSAGE['MEDIA']['BLANK_NAME'] = 'You did not enter a new name';
-$MESSAGE['MEDIA']['BLANK_EXTENSION'] = 'You did not enter a file extension';
-$MESSAGE['MEDIA']['RENAMED'] = 'Rename successful';
-$MESSAGE['MEDIA']['CANNOT_RENAME'] = 'Rename unsuccessful';
-$MESSAGE['MEDIA']['FILE_EXISTS'] = 'A file matching the name you entered already exists';
-$MESSAGE['MEDIA']['DIR_EXISTS'] = 'A folder matching the name you entered already exists';
-$MESSAGE['MEDIA']['DIR_MADE'] = 'Folder created successfully';
-$MESSAGE['MEDIA']['DIR_NOT_MADE'] = 'Unable to create folder';
-$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = ' file was successfully uploaded';
-$MESSAGE['MEDIA']['UPLOADED'] = ' files were successfully uploaded';
-
-$MESSAGE['PAGES']['ADDED'] = 'Page added successfully';
-$MESSAGE['PAGES']['ADDED_HEADING'] = 'Page heading added successfully';
-$MESSAGE['PAGES']['PAGE_EXISTS'] = 'A page with the same or similar title exists';
-$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = 'Error creating access file in the /pages directory (insufficient privileges)';
-$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = 'Error deleting access file in the /pages directory (insufficient privileges)';
-$MESSAGE['PAGES']['NOT_FOUND'] = 'Page not found';
-$MESSAGE['PAGES']['SAVED'] = 'Page saved successfully';
-$MESSAGE['PAGES']['SAVED_SETTINGS'] = 'Page settings saved successfully';
-$MESSAGE['PAGES']['NOT_SAVED'] = 'Error saving page';
-$MESSAGE['PAGES']['DELETE_CONFIRM'] = 'Are you sure you want to delete the selected page (and all of its sub-pages)';
-$MESSAGE['PAGES']['DELETED'] = 'Page deleted successfully';
-$MESSAGE['PAGES']['RESTORED'] = 'Page restored successfully';
-$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = 'Please enter a page title';
-$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = 'Please enter a menu title';
-$MESSAGE['PAGES']['REORDERED'] = 'Page re-ordered successfully';
-$MESSAGE['PAGES']['CANNOT_REORDER'] = 'Error re-ordering page';
-$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = 'You do not have permissions to modify this page';
-$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = 'Cannot write to file /pages/intro.php (insufficient privileges)';
-$MESSAGE['PAGES']['INTRO_SAVED'] = 'Intro page saved successfully';
-$MESSAGE['PAGES']['LAST_MODIFIED'] = 'Last modification by';
-$MESSAGE['PAGES']['INTRO_LINK'] = 'Click HERE to modify the intro page';
-$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = 'Section properties saved successfully';
-$MESSAGE['PAGES']['RETURN_TO_PAGES'] = 'Return to pages';
-
-$MESSAGE['GENERIC']['FILL_IN_ALL'] = 'Please go back and fill-in all fields';
-$MESSAGE['GENERIC']['FILE_TYPE'] = 'Please note that the file you upload must be of the following format:';
-$MESSAGE['GENERIC']['FILE_TYPES'] = 'Please note that the file you upload must be in one of the following formats:';
-$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = 'Cannot upload file';
-$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = 'Already installed';
-$MESSAGE['GENERIC']['NOT_INSTALLED'] = 'Not installed';
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = 'Cannot uninstall';
-$MESSAGE['GENERIC']['CANNOT_UNZIP'] = 'Cannot unzip file';
-$MESSAGE['GENERIC']['INSTALLED'] = 'Installed successfully';
-$MESSAGE['GENERIC']['UPGRADED'] = 'Upgraded successfully';
-$MESSAGE['GENERIC']['UNINSTALLED'] = 'Uninstalled successfully';
-$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = 'Unable to write to the target directory';
-$MESSAGE['GENERIC']['INVALID'] = 'The file you uploaded is invalid';
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = 'Cannot Uninstall: the selected file is in use';
-
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = "<br /><br />{{type}} <b>{{type_name}}</b> could not be uninstalled, because it is still in use on {{pages}}.<br /><br />";
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = "this page;these pages";
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = "Can't uninstall the template <b>{{name}}</b>, because it is the default template!";
-
-$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'] = 'Website Under Construction';
-$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Please check back soon...';
-$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
-$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
-$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid WebsiteBaker installation file. Please check the *.zip format.';
-$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid WebsiteBaker language file. Please check the text file.';
-
-$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
-$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.';
-$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.'';
-
-$MESSAGE['ADDON']['RELOAD'] = 'Update database with information from Add-on files (e.g. after FTP upload).';
-$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.';
-$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully';
-$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
-$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
-$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on work on your system, please fix the issues summarized below.';
-$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correctly or uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
-$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
-
-?>
+<?php
+/**
+ *
+ * @category        framework
+ * @package         language
+ * @author          WebsiteBaker Project
+ * @copyright       2004-2009, Ryan Djurovich
+ * @copyright       2009-2010, 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 4.3.4 and higher
+ * @version         $Id$
+ * @filesource		$HeadURL$
+ * @lastmodified    $Date$
+ *
+ */
+
+// use languageedit-module to modify this file
+
+// Define that this file is loaded
+if(!defined('LANGUAGE_LOADED')) {
+define('LANGUAGE_LOADED', true);
+}
+
+// Set the language information
+$language_code = 'EN';
+$language_name = 'English';
+$language_version = '2.8';
+$language_platform = '2.8.x';
+$language_author = 'Ryan Djurovich, Christian Sommer';
+$language_license = 'GNU General Public License';
+
+// Menu titles
+$MENU['START'] = 'Start';
+$MENU['PAGES'] = 'Pages';
+$MENU['MEDIA'] = 'Media';
+$MENU['ADDONS'] = 'Add-ons';
+$MENU['MODULES'] = 'Modules';
+$MENU['TEMPLATES'] = 'Templates';
+$MENU['LANGUAGES'] = 'Languages';
+$MENU['PREFERENCES'] = 'Preferences';
+$MENU['SETTINGS'] = 'Settings';
+$MENU['ADMINTOOLS'] = 'Admin-Tools';
+$MENU['ACCESS'] = 'Access';
+$MENU['USERS'] = 'Users';
+$MENU['GROUPS'] = 'Groups';
+$MENU['HELP'] = 'Help';
+$MENU['VIEW'] = 'View';
+$MENU['LOGOUT'] = 'Log-out';
+$MENU['LOGIN'] = 'Login';
+$MENU['FORGOT'] = 'Retrieve Login Details';
+
+// Section overviews
+$OVERVIEW['START'] = 'Administration overview';
+$OVERVIEW['PAGES'] = 'Manage your websites pages...';
+$OVERVIEW['MEDIA'] = 'Manage files stored in the media folder...';
+$OVERVIEW['MODULES'] = 'Manage WebsiteBaker modules...';
+$OVERVIEW['TEMPLATES'] = 'Change the look and feel of your website with templates...';
+$OVERVIEW['LANGUAGES'] = 'Manage WebsiteBaker languages...';
+$OVERVIEW['PREFERENCES'] = 'Change preferences such as email address, password, etc... ';
+$OVERVIEW['SETTINGS'] = 'Changes settings for WebsiteBaker...';
+$OVERVIEW['USERS'] = 'Manage users who can log-in to WebsiteBaker...';
+$OVERVIEW['GROUPS'] = 'Manage user groups and their system permissions...';
+$OVERVIEW['HELP'] = 'Got a questions? Find your answer...';
+$OVERVIEW['VIEW'] = 'Quickly view and browse your website in a new window...';
+$OVERVIEW['ADMINTOOLS'] = 'Access the WebsiteBaker administration tools...';
+
+// Headings
+$HEADING['MODIFY_DELETE_PAGE'] = 'Modify/Delete Page';
+$HEADING['DELETED_PAGES'] = 'Deleted Pages';
+$HEADING['ADD_PAGE'] = 'Add Page';
+$HEADING['ADD_HEADING'] = 'Add Heading';
+$HEADING['MODIFY_PAGE'] = 'Modify Page';
+$HEADING['MODIFY_PAGE_SETTINGS'] = 'Modify Page Settings';
+$HEADING['MODIFY_ADVANCED_PAGE_SETTINGS'] = 'Modify Advanced Page Settings';
+$HEADING['MANAGE_SECTIONS'] = 'Manage Sections';
+$HEADING['MODIFY_INTRO_PAGE'] = 'Modify Intro Page';
+
+$HEADING['BROWSE_MEDIA'] = 'Browse Media';
+$HEADING['CREATE_FOLDER'] = 'Create Folder';
+$HEADING['UPLOAD_FILES'] = 'Upload File(s)';
+
+$HEADING['INSTALL_MODULE'] = 'Install Module';
+$HEADING['UNINSTALL_MODULE'] = 'Uninstall Module';
+$HEADING['MODULE_DETAILS'] = 'Module Details';
+
+$HEADING['INSTALL_TEMPLATE'] = 'Install Template';
+$HEADING['UNINSTALL_TEMPLATE'] = 'Uninstall Template';
+$HEADING['TEMPLATE_DETAILS'] = 'Template Details';
+
+$HEADING['INSTALL_LANGUAGE'] = 'Install Language';
+$HEADING['UNINSTALL_LANGUAGE'] = 'Uninstall Language';
+$HEADING['LANGUAGE_DETAILS'] = 'Language Details';
+
+$HEADING['MY_SETTINGS'] = 'My Settings';
+$HEADING['MY_EMAIL'] = 'My Email';
+$HEADING['MY_PASSWORD'] = 'My Password';
+
+$HEADING['GENERAL_SETTINGS'] = 'General Settings';
+$HEADING['DEFAULT_SETTINGS'] = 'Default Settings';
+$HEADING['SEARCH_SETTINGS'] = 'Search Settings';
+$HEADING['FILESYSTEM_SETTINGS'] = 'Filesystem Settings';
+$HEADING['SERVER_SETTINGS'] = 'Server Settings';
+$HEADING['WBMAILER_SETTINGS'] = 'Mailer Settings';
+$HEADING['ADMINISTRATION_TOOLS'] = 'Administration Tools';
+
+$HEADING['MODIFY_DELETE_USER'] = 'Modify/Delete User';
+$HEADING['ADD_USER'] = 'Add User';
+$HEADING['MODIFY_USER'] = 'Modify User';
+
+$HEADING['MODIFY_DELETE_GROUP'] = 'Modify/Delete Group';
+$HEADING['ADD_GROUP'] = 'Add Group';
+$HEADING['MODIFY_GROUP'] = 'Modify Group';
+
+$HEADING['ADDON_PRECHECK_FAILED'] = 'Add-On requirements not met';
+$HEADING['INVOKE_MODULE_FILES'] = 'Execute module files manually';
+
+// Other text
+$TEXT['OPEN'] = 'Open';
+$TEXT['ADD'] = 'Add';
+$TEXT['MODIFY'] = 'Modify';
+$TEXT['SETTINGS'] = 'Settings';
+$TEXT['DELETE'] = 'Delete';
+$TEXT['SAVE'] = 'Save';
+$TEXT['RESET'] = 'Reset';
+$TEXT['LOGIN'] = 'Login';
+$TEXT['RELOAD'] = 'Reload';
+$TEXT['CANCEL'] = 'Cancel';
+$TEXT['NAME'] = 'Name';
+$TEXT['PLEASE_SELECT'] = 'Please select';
+$TEXT['TITLE'] = 'Title';
+$TEXT['PARENT'] = 'Parent';
+$TEXT['TYPE'] = 'Type';
+$TEXT['VISIBILITY'] = 'Visibility';
+$TEXT['PRIVATE'] = 'Private';
+$TEXT['PUBLIC'] = 'Public';
+$TEXT['NONE'] = 'None';
+$TEXT['NONE_FOUND'] = 'None Found';
+$TEXT['CURRENT'] = 'Current';
+$TEXT['CHANGE'] = 'Change';
+$TEXT['WINDOW'] = 'Window';
+$TEXT['DESCRIPTION'] = 'Description';
+$TEXT['KEYWORDS'] = 'Keywords';
+$TEXT['ADMINISTRATORS'] = 'Administrators';
+$TEXT['PRIVATE_VIEWERS'] = 'Private Viewers';
+$TEXT['EXPAND'] = 'Expand';
+$TEXT['COLLAPSE'] = 'Collapse';
+$TEXT['MOVE_UP'] = 'Move Up';
+$TEXT['MOVE_DOWN'] = 'Move Down';
+$TEXT['RENAME'] = 'Rename';
+$TEXT['MODIFY_SETTINGS'] = 'Modify Settings';
+$TEXT['MODIFY_CONTENT'] = 'Modify Content';
+$TEXT['VIEW'] = 'View';
+$TEXT['UP'] = 'Up';
+$TEXT['FORGOTTEN_DETAILS'] = 'Forgotten your details?';
+$TEXT['NEED_TO_LOGIN'] = 'Need to log-in?';
+$TEXT['SEND_DETAILS'] = 'Send Details';
+$TEXT['USERNAME'] = 'Username';
+$TEXT['PASSWORD'] = 'Password';
+$TEXT['HOME'] = 'Home';
+$TEXT['TARGET_FOLDER'] = 'Target folder';
+$TEXT['OVERWRITE_EXISTING'] = 'Overwrite existing';
+$TEXT['FILE'] = 'File';
+$TEXT['FILES'] = 'Files';
+$TEXT['FOLDER'] = 'Folder';
+$TEXT['FOLDERS'] = 'Folders';
+$TEXT['CREATE_FOLDER'] = 'Create Folder';
+$TEXT['UPLOAD_FILES'] = 'Upload File(s)';
+$TEXT['CURRENT_FOLDER'] = 'Current Folder';
+$TEXT['TO'] = 'To';
+$TEXT['FROM'] = 'From';
+$TEXT['INSTALL'] = 'Install';
+$TEXT['UNINSTALL'] = 'Uninstall';
+$TEXT['VIEW_DETAILS'] = 'View Details';
+$TEXT['DISPLAY_NAME'] = 'Display Name';
+$TEXT['AUTHOR'] = 'Author';
+$TEXT['VERSION'] = 'Version';
+$TEXT['DESIGNED_FOR'] = 'Designed For';
+$TEXT['DESCRIPTION'] = 'Description';
+$TEXT['EMAIL'] = 'Email';
+$TEXT['LANGUAGE'] = 'Language';
+$TEXT['TIMEZONE'] = 'Timezone';
+$TEXT['CURRENT_PASSWORD'] = 'Current Password';
+$TEXT['NEW_PASSWORD'] = 'New Password';
+$TEXT['RETYPE_NEW_PASSWORD'] = 'Re-type New Password';
+$TEXT['ACTIVE'] = 'Active';
+$TEXT['DISABLED'] = 'Disabled';
+$TEXT['ENABLED'] = 'Enabled';
+$TEXT['RETYPE_PASSWORD'] = 'Re-type Password';
+$TEXT['GROUP'] = 'Group';
+$TEXT['SYSTEM_PERMISSIONS'] = 'System Permissions';
+$TEXT['MODULE_PERMISSIONS'] = 'Module Permissions';
+$TEXT['SHOW_ADVANCED'] = 'Show Advanced Options';
+$TEXT['HIDE_ADVANCED'] = 'Hide Advanced Options';
+$TEXT['BASIC'] = 'Basic';
+$TEXT['ADVANCED'] = 'Advanced';
+$TEXT['WEBSITE'] = 'Website';
+$TEXT['DEFAULT'] = 'Default';
+$TEXT['KEYWORDS'] = 'Keywords';
+$TEXT['TEXT'] = 'Text';
+$TEXT['HEADER'] = 'Header';
+$TEXT['FOOTER'] = 'Footer';
+$TEXT['TEMPLATE'] = 'Template';
+$TEXT['THEME'] = 'Backend-Theme';
+$TEXT['INSTALLATION'] = 'Installation';
+$TEXT['DATABASE'] = 'Database';
+$TEXT['HOST'] = 'Host';
+$TEXT['INTRO'] = 'Intro';
+$TEXT['PAGE'] = 'Page';
+$TEXT['SIGNUP'] = 'Sign-up';
+$TEXT['PHP_ERROR_LEVEL'] = 'PHP Error Reporting Level';
+$TEXT['ADMIN'] = 'Admin';
+$TEXT['PATH'] = 'Path';
+$TEXT['URL'] = 'URL';
+$TEXT['FRONTEND'] = 'Front-end';
+$TEXT['EXTENSION'] = 'Extension';
+$TEXT['TABLE_PREFIX'] = 'Table Prefix';
+$TEXT['CHANGES'] = 'Changes';
+$TEXT['ADMINISTRATION'] = 'Administration';
+$TEXT['FORGOT_DETAILS'] = 'Forgot Details?';
+$TEXT['LOGGED_IN'] = 'Logged-In';
+$TEXT['WELCOME_BACK'] = 'Welcome back';
+$TEXT['FULL_NAME'] = 'Full Name';
+$TEXT['ACCOUNT_SIGNUP'] = 'Account Sign-Up';
+$TEXT['LINK'] = 'Link';
+$TEXT['ANCHOR'] = 'Anchor';
+$TEXT['TARGET'] = 'Target';
+$TEXT['NEW_WINDOW'] = 'New Window';
+$TEXT['SAME_WINDOW'] = 'Same Window';
+$TEXT['TOP_FRAME'] = 'Top Frame';
+$TEXT['PAGE_LEVEL_LIMIT'] = 'Page Level Limit';
+$TEXT['SUCCESS'] = 'Success';
+$TEXT['ERROR'] = 'Error';
+$TEXT['ARE_YOU_SURE'] = 'Are you sure?';
+$TEXT['YES'] = 'Yes';
+$TEXT['NO'] = 'No';
+$TEXT['SYSTEM_DEFAULT'] = 'System Default';
+$TEXT['PAGE_TITLE'] = 'Page Title';
+$TEXT['MENU_TITLE'] = 'Menu Title';
+$TEXT['ACTIONS'] = 'Actions';
+$TEXT['UNKNOWN'] = 'Unknown';
+$TEXT['BLOCK'] = 'Block';
+$TEXT['SEARCH'] = 'Search';
+$TEXT['SEARCHING'] = 'Searching';
+$TEXT['POST'] = 'Post';
+$TEXT['COMMENT'] = 'Comment';
+$TEXT['COMMENTS'] = 'Comments';
+$TEXT['COMMENTING'] = 'Commenting';
+$TEXT['SHORT'] = 'Short';
+$TEXT['LONG'] = 'Long';
+$TEXT['LOOP'] = 'Loop';
+$TEXT['FIELD'] = 'Field';
+$TEXT['REQUIRED'] = 'Required';
+$TEXT['LENGTH'] = 'Length';
+$TEXT['MESSAGE'] = 'Message';
+$TEXT['SUBJECT'] = 'Subject';
+$TEXT['MATCH'] = 'Match';
+$TEXT['ALL_WORDS'] = 'All Words';
+$TEXT['ANY_WORDS'] = 'Any Words';
+$TEXT['EXACT_MATCH'] = 'Exact Match';
+$TEXT['SHOW'] = 'Show';
+$TEXT['HIDE'] = 'Hide';
+$TEXT['START_PUBLISHING'] = 'Start Publishing';
+$TEXT['FINISH_PUBLISHING'] = 'Finish Publishing';
+$TEXT['DATE'] = 'Date';
+$TEXT['START'] = 'Start';
+$TEXT['END'] = 'End';
+$TEXT['IMAGE'] = 'Image';
+$TEXT['ICON'] = 'Icon';
+$TEXT['SECTION'] = 'Section';
+$TEXT['DATE_FORMAT'] = 'Date Format';
+$TEXT['TIME_FORMAT'] = 'Time Format';
+$TEXT['RESULTS'] = 'Results';
+$TEXT['RESIZE'] = 'Re-size';
+$TEXT['MANAGE'] = 'Manage';
+$TEXT['CODE'] = 'Code';
+$TEXT['WIDTH'] = 'Width';
+$TEXT['HEIGHT'] = 'Height';
+$TEXT['MORE'] = 'More';
+$TEXT['READ_MORE'] = 'Read More';
+$TEXT['CHANGE_SETTINGS'] = 'Change Settings';
+$TEXT['CURRENT_PAGE'] = 'Current Page';
+$TEXT['CLOSE'] = 'Close';
+$TEXT['INTRO_PAGE'] = 'Intro Page';
+$TEXT['INSTALLATION_URL'] = 'Installation URL';
+$TEXT['INSTALLATION_PATH'] = 'Installation Path';
+$TEXT['PAGE_EXTENSION'] = 'Page Extension';
+$TEXT['NO_RESULTS'] = 'No Results';
+$TEXT['WEBSITE_TITLE'] = 'Website Title';
+$TEXT['WEBSITE_DESCRIPTION'] = 'Website Description';
+$TEXT['WEBSITE_KEYWORDS'] = 'Website Keywords';
+$TEXT['WEBSITE_HEADER'] = 'Website Header';
+$TEXT['WEBSITE_FOOTER'] = 'Website Footer';
+$TEXT['RESULTS_HEADER'] = 'Results Header';
+$TEXT['RESULTS_LOOP'] = 'Results Loop';
+$TEXT['RESULTS_FOOTER'] = 'Results Footer';
+$TEXT['LEVEL'] = 'Level';
+$TEXT['NOT_FOUND'] = 'Not Found';
+$TEXT['PAGE_SPACER'] = 'Page Spacer';
+$TEXT['MATCHING'] = 'Matching';
+$TEXT['TEMPLATE_PERMISSIONS'] = 'Template Permissions';
+$TEXT['PAGES_DIRECTORY'] = 'Pages Directory';
+$TEXT['MEDIA_DIRECTORY'] = 'Media Directory';
+$TEXT['FILE_MODE'] = 'File Mode';
+$TEXT['USER'] = 'User';
+$TEXT['OTHERS'] = 'Others';
+$TEXT['READ'] = 'Read';
+$TEXT['WRITE'] = 'Write';
+$TEXT['EXECUTE'] = 'Execute';
+$TEXT['SMART_LOGIN'] = 'Smart Login';
+$TEXT['REMEMBER_ME'] = 'Remember Me';
+$TEXT['FILESYSTEM_PERMISSIONS'] = 'Filesystem Permissions';
+$TEXT['DIRECTORIES'] = 'Directories';
+$TEXT['DIRECTORY_MODE'] = 'Directory Mode';
+$TEXT['LIST_OPTIONS'] = 'List Options';
+$TEXT['OPTION'] = 'Option';
+$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'Allow Multiple Selections';
+$TEXT['TEXTFIELD'] = 'Textfield';
+$TEXT['TEXTAREA'] = 'Textarea';
+$TEXT['SELECT_BOX'] = 'Select Box';
+$TEXT['CHECKBOX_GROUP'] = 'Checkbox Group';
+$TEXT['RADIO_BUTTON_GROUP'] = 'Radio Button Group';
+$TEXT['SIZE'] = 'Size';
+$TEXT['DEFAULT_TEXT'] = 'Default Text';
+$TEXT['SEPERATOR'] = 'Separator';
+$TEXT['BACK'] = 'Back';
+$TEXT['UNDER_CONSTRUCTION'] = 'Under Construction';
+$TEXT['MULTISELECT'] = 'Multi-select';
+$TEXT['SHORT_TEXT'] = 'Short Text';
+$TEXT['LONG_TEXT'] = 'Long Text';
+$TEXT['HOMEPAGE_REDIRECTION'] = 'Homepage Redirection';
+$TEXT['HEADING'] = 'Heading';
+$TEXT['MULTIPLE_MENUS'] = 'Multiple Menus';
+$TEXT['REGISTERED'] = 'Registered';
+$TEXT['SECTION_BLOCKS'] = 'Section Blocks';
+$TEXT['REGISTERED_VIEWERS'] = 'Registered Viewers';
+$TEXT['ALLOWED_VIEWERS'] = 'Allowed Viewers';
+$TEXT['SUBMISSION_ID'] = 'Submission ID';
+$TEXT['SUBMISSIONS'] = 'Submissions';
+$TEXT['SUBMITTED'] = 'Submitted';
+$TEXT['MAX_SUBMISSIONS_PER_HOUR'] = 'Max. Submissions Per Hour';
+$TEXT['SUBMISSIONS_STORED_IN_DATABASE'] = 'Submissions Stored In Database';
+$TEXT['EMAIL_ADDRESS'] = 'Email Address';
+$TEXT['CUSTOM'] = 'Custom';
+$TEXT['ANONYMOUS'] = 'Anonymous';
+$TEXT['SERVER_OPERATING_SYSTEM'] = 'Server Operating System';
+$TEXT['WORLD_WRITEABLE_FILE_PERMISSIONS'] = 'World-writeable file permissions';
+$TEXT['LINUX_UNIX_BASED'] = 'Linux/Unix based';
+$TEXT['WINDOWS'] = 'Windows';
+$TEXT['HOME_FOLDER'] = 'Home Folder';
+$TEXT['HOME_FOLDERS'] = 'Home Folders';
+$TEXT['PAGE_TRASH'] = 'Page Trash';
+$TEXT['INLINE'] = 'In-line';
+$TEXT['SEPARATE'] = 'Separate';
+$TEXT['DELETED'] = 'Deleted';
+$TEXT['VIEW_DELETED_PAGES'] = 'View Deleted Pages';
+$TEXT['EMPTY_TRASH'] = 'Empty Trash';
+$TEXT['TRASH_EMPTIED'] = 'Trash Emptied';
+$TEXT['ADD_SECTION'] = 'Add Section';
+$TEXT['POST_HEADER'] = 'Post Header';
+$TEXT['POST_FOOTER'] = 'Post Footer';
+$TEXT['POSTS_PER_PAGE'] = 'Posts Per Page';
+$TEXT['RESIZE_IMAGE_TO'] = 'Resize Image To';
+$TEXT['UNLIMITED'] = 'Unlimited';
+$TEXT['OF'] = 'Of';
+$TEXT['OUT_OF'] = 'Out Of';
+$TEXT['NEXT'] = 'Next';
+$TEXT['PREVIOUS'] = 'Previous';
+$TEXT['NEXT_PAGE'] = 'Next Page';
+$TEXT['PREVIOUS_PAGE'] = 'Previous Page';
+$TEXT['ON'] = 'On';
+$TEXT['LAST_UPDATED_BY'] = 'Last Updated By';
+$TEXT['RESULTS_FOR'] = 'Results For';
+$TEXT['TIME'] = 'Time';
+$TEXT['REDIRECT_AFTER'] = 'Redirect after';
+$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style';
+$TEXT['WYSIWYG_EDITOR'] = 'WYSIWYG Editor';
+$TEXT['SERVER_EMAIL'] = 'Server Email';
+$TEXT['MENU'] = 'Menu';
+$TEXT['MANAGE_GROUPS'] = 'Manage Groups';
+$TEXT['MANAGE_USERS'] = 'Manage Users';
+$TEXT['PAGE_LANGUAGES'] = 'Page Languages';
+$TEXT['HIDDEN'] = 'Hidden';
+$TEXT['MAIN'] = 'Main';
+$TEXT['RENAME_FILES_ON_UPLOAD'] = 'Rename Files On Upload';
+$TEXT['APP_NAME'] = 'Application Name';
+$TEXT['SESSION_IDENTIFIER'] = 'Session Identifier';
+$TEXT['SEC_ANCHOR'] = 'Section-Anchor text';
+$TEXT['BACKUP'] = 'Backup';
+$TEXT['RESTORE'] = 'Restore';
+$TEXT['BACKUP_DATABASE'] = 'Backup Database';
+$TEXT['RESTORE_DATABASE'] = 'Restore Database';
+$TEXT['BACKUP_ALL_TABLES'] = 'Backup all tables in database';
+$TEXT['BACKUP_WB_SPECIFIC'] = 'Backup only WB-specific tables';
+$TEXT['BACKUP_MEDIA'] = 'Backup Media';
+$TEXT['RESTORE_MEDIA'] = 'Restore Media';
+$TEXT['ADMINISTRATION_TOOL'] = 'Administration tool';
+$TEXT['CAPTCHA_VERIFICATION'] = 'Captcha Verification';
+$TEXT['VERIFICATION'] = 'Verification';
+$TEXT['DEFAULT_CHARSET'] = 'Default Charset';
+$TEXT['CHARSET'] = 'Charset';
+$TEXT['MODULE_ORDER'] = 'Module-order for searching';
+$TEXT['MAX_EXCERPT'] = 'Max lines of excerpt';
+$TEXT['TIME_LIMIT'] = 'Max time to gather excerpts per module';
+$TEXT['PUBL_START_DATE'] = 'Start date';
+$TEXT['PUBL_END_DATE'] = 'End date';
+$TEXT['CALENDAR'] = 'Calendar';
+$TEXT['DELETE_DATE'] = 'Delete date';
+$TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by WebsiteBaker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.';
+$TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail';
+$TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name';
+$TEXT['WBMAILER_NOTICE'] = '<strong>SMTP Mailer Settings:</strong><br />The settings below are only required if you want to send mails via <acronym title="Simple mail transfer protocol">SMTP</acronym>. If you do not know your SMTP host or you are not sure about the required settings, simply stay with the default mail routine: PHP MAIL.';
+$TEXT['WBMAILER_FUNCTION'] = 'Mail Routine';
+$TEXT['WBMAILER_SMTP_HOST'] = 'SMTP Host';
+$TEXT['WBMAILER_PHP'] = 'PHP MAIL';
+$TEXT['WBMAILER_SMTP'] = 'SMTP';
+$TEXT['WBMAILER_SMTP_AUTH'] = 'SMTP Authentification';
+$TEXT['WBMAILER_SMTP_AUTH_NOTICE'] = 'only activate if your SMTP host requires authentification';
+$TEXT['WBMAILER_SMTP_USERNAME'] = 'SMTP Username';
+$TEXT['WBMAILER_SMTP_PASSWORD'] = 'SMTP Password';
+$TEXT['PLEASE_LOGIN'] = 'Please login';
+$TEXT['CAP_EDIT_CSS'] = 'Edit CSS';
+$TEXT['HEADING_CSS_FILE'] = 'Actual module file: ';
+$TEXT['TXT_EDIT_CSS_FILE'] = 'Edit the CSS definitions in the textarea below.';
+$TEXT['CODE_SNIPPET'] = "Code-snippet";
+$TEXT['REQUIREMENT'] = "Requirement";
+$TEXT['INSTALLED'] = "installed";
+$TEXT['NOT_INSTALLED'] = "not installed";
+$TEXT['ADDON'] = "Add-On";
+$TEXT['EXTENSION'] = "Extension";
+$TEXT['UNZIP_FILE'] = "Upload and unpack a zip archive";
+$TEXT['DELETE_ZIP'] = "Delete zip archive after unpacking";
+
+// Success/error messages
+$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, you do not have permissions to view this page';
+$MESSAGE['FRONTEND']['SORRY_NO_ACTIVE_SECTIONS'] = 'Sorry, no active content to display';
+
+$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = 'Insufficient privelliges to be here';
+
+$MESSAGE['LOGIN']['BOTH_BLANK'] = 'Please enter your username and password below';
+$MESSAGE['LOGIN']['USERNAME_BLANK'] = 'Please enter a username';
+$MESSAGE['LOGIN']['PASSWORD_BLANK'] = 'Please enter a password';
+$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = 'Supplied username to short';
+$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = 'Supplied password to short';
+$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = 'Supplied username to long';
+$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = 'Supplied password to long';
+$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = 'Username or password incorrect';
+
+$MESSAGE['SIGNUP']['NO_EMAIL'] = 'You must enter an email address';
+$MESSAGE['SIGNUP2']['SUBJECT_LOGIN_INFO'] = 'Your login details...';
+$MESSAGE['SIGNUP2']['BODY_LOGIN_INFO'] = <<< EOT
+Hello {LOGIN_DISPLAY_NAME},
+
+Your '{LOGIN_WEBSITE_TITLE}' login details are:
+Username: {LOGIN_NAME}
+Password: {LOGIN_PASSWORD}
+
+Your password has been set to the one above.
+This means that your old password will no longer work.
+
+If you have received this message in error, please delete it immediately.
+EOT;
+
+$MESSAGE['FORGOT_PASS']['NO_DATA'] = 'Please enter your email address below';
+$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = 'The email that you entered cannot be found in the database';
+$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = 'Unable to email password, please contact system administrator';
+$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = 'Your username and password have been sent to your email address';
+$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = 'Password cannot be reset more than once per hour, sorry';
+
+$MESSAGE['START']['WELCOME_MESSAGE'] = 'Welcome to WebsiteBaker Administration';
+$MESSAGE['START']['INSTALL_DIR_EXISTS'] = 'Warning, Installation Directory Still Exists!';
+$MESSAGE['START']['CURRENT_USER'] = 'You are currently logged in as:';
+
+$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = 'Unable to open the configuration file';
+$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = 'Cannot write to configuration file';
+$MESSAGE['SETTINGS']['SAVED'] = 'Settings saved successfully';
+$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = 'Please Note: Pressing this button resets all unsaved changes';
+$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = 'Please note: this is only recommended for testing environments';
+
+$MESSAGE['USERS']['ADDED'] = 'User added successfully';
+$MESSAGE['USERS']['SAVED'] = 'User saved successfully';
+$MESSAGE['USERS']['DELETED'] = 'User deleted successfully';
+$MESSAGE['USERS']['NO_GROUP'] = 'No group was selected';
+$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = 'The username you entered was too short';
+$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = 'The password you entered was too short';
+$MESSAGE['USERS']['PASSWORD_MISMATCH'] = 'The passwords you entered do not match';
+$MESSAGE['USERS']['INVALID_EMAIL'] = 'The email address you entered is invalid';
+$MESSAGE['USERS']['EMAIL_TAKEN'] = 'The email you entered is already in use';
+$MESSAGE['USERS']['USERNAME_TAKEN'] = 'The username you entered is already taken';
+$MESSAGE['USERS']['CHANGING_PASSWORD'] = 'Please note: You should only enter values in the above fields if you wish to change this users password';
+$MESSAGE['USERS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected user?';
+
+$MESSAGE['GROUPS']['ADDED'] = 'Group added successfully';
+$MESSAGE['GROUPS']['SAVED'] = 'Group saved successfully';
+$MESSAGE['GROUPS']['DELETED'] = 'Group deleted successfully';
+$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = 'Group name is blank';
+$MESSAGE['GROUPS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected group (and any users that belong to it)?';
+$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = 'No groups found';
+$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = 'Group name already exists';
+
+$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = 'Details saved successfully';
+$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email updated successfully';
+$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'The (current) password you entered is incorrect';
+$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Password changed successfully';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
+
+$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section';
+
+$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = 'Cannot include ../ in the folder name';
+$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = 'Directory does not exist';
+$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target';
+$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = 'Cannot include ../ in the name';
+$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = 'Cannot use index.php as the name';
+$MESSAGE['MEDIA']['NONE_FOUND'] = 'No media found in the current folder';
+$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = 'File not found';
+$MESSAGE['MEDIA']['DELETED_FILE'] = 'File deleted successfully';
+$MESSAGE['MEDIA']['DELETED_DIR'] = 'Folder deleted successfully';
+$MESSAGE['MEDIA']['CONFIRM_DELETE'] = 'Are you sure you want to delete the following file or folder?';
+$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = 'Cannot delete the selected file';
+$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = 'Cannot delete the selected folder';
+$MESSAGE['MEDIA']['BLANK_NAME'] = 'You did not enter a new name';
+$MESSAGE['MEDIA']['BLANK_EXTENSION'] = 'You did not enter a file extension';
+$MESSAGE['MEDIA']['RENAMED'] = 'Rename successful';
+$MESSAGE['MEDIA']['CANNOT_RENAME'] = 'Rename unsuccessful';
+$MESSAGE['MEDIA']['FILE_EXISTS'] = 'A file matching the name you entered already exists';
+$MESSAGE['MEDIA']['DIR_EXISTS'] = 'A folder matching the name you entered already exists';
+$MESSAGE['MEDIA']['DIR_MADE'] = 'Folder created successfully';
+$MESSAGE['MEDIA']['DIR_NOT_MADE'] = 'Unable to create folder';
+$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = ' file was successfully uploaded';
+$MESSAGE['MEDIA']['UPLOADED'] = ' files were successfully uploaded';
+
+$MESSAGE['PAGES']['ADDED'] = 'Page added successfully';
+$MESSAGE['PAGES']['ADDED_HEADING'] = 'Page heading added successfully';
+$MESSAGE['PAGES']['PAGE_EXISTS'] = 'A page with the same or similar title exists';
+$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = 'Error creating access file in the /pages directory (insufficient privileges)';
+$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = 'Error deleting access file in the /pages directory (insufficient privileges)';
+$MESSAGE['PAGES']['NOT_FOUND'] = 'Page not found';
+$MESSAGE['PAGES']['SAVED'] = 'Page saved successfully';
+$MESSAGE['PAGES']['SAVED_SETTINGS'] = 'Page settings saved successfully';
+$MESSAGE['PAGES']['NOT_SAVED'] = 'Error saving page';
+$MESSAGE['PAGES']['DELETE_CONFIRM'] = 'Are you sure you want to delete the selected page (and all of its sub-pages)';
+$MESSAGE['PAGES']['DELETED'] = 'Page deleted successfully';
+$MESSAGE['PAGES']['RESTORED'] = 'Page restored successfully';
+$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = 'Please enter a page title';
+$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = 'Please enter a menu title';
+$MESSAGE['PAGES']['REORDERED'] = 'Page re-ordered successfully';
+$MESSAGE['PAGES']['CANNOT_REORDER'] = 'Error re-ordering page';
+$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = 'You do not have permissions to modify this page';
+$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = 'Cannot write to file /pages/intro.php (insufficient privileges)';
+$MESSAGE['PAGES']['INTRO_SAVED'] = 'Intro page saved successfully';
+$MESSAGE['PAGES']['LAST_MODIFIED'] = 'Last modification by';
+$MESSAGE['PAGES']['INTRO_LINK'] = 'Click HERE to modify the intro page';
+$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = 'Section properties saved successfully';
+$MESSAGE['PAGES']['RETURN_TO_PAGES'] = 'Return to pages';
+
+$MESSAGE['GENERIC']['FILL_IN_ALL'] = 'Please go back and fill-in all fields';
+$MESSAGE['GENERIC']['FILE_TYPE'] = 'Please note that the file you upload must be of the following format:';
+$MESSAGE['GENERIC']['FILE_TYPES'] = 'Please note that the file you upload must be in one of the following formats:';
+$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = 'Cannot upload file';
+$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = 'Already installed';
+$MESSAGE['GENERIC']['NOT_INSTALLED'] = 'Not installed';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = 'Cannot uninstall';
+$MESSAGE['GENERIC']['CANNOT_UNZIP'] = 'Cannot unzip file';
+$MESSAGE['GENERIC']['INSTALLED'] = 'Installed successfully';
+$MESSAGE['GENERIC']['UPGRADED'] = 'Upgraded successfully';
+$MESSAGE['GENERIC']['UNINSTALLED'] = 'Uninstalled successfully';
+$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = 'Unable to write to the target directory';
+$MESSAGE['GENERIC']['INVALID'] = 'The file you uploaded is invalid';
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = 'Cannot Uninstall: the selected file is in use';
+
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = "<br /><br />{{type}} <b>{{type_name}}</b> could not be uninstalled, because it is still in use on {{pages}}.<br /><br />";
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = "this page;these pages";
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = "Can't uninstall the template <b>{{name}}</b>, because it is the default template!";
+
+$MESSAGE['GENERIC']['WEBSITE_UNDER_CONSTRUCTION'] = 'Website Under Construction';
+$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Please check back soon...';
+$MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Please be patient, this might take a while.';
+$MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Error opening file.';
+$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Invalid WebsiteBaker installation file. Please check the *.zip format.';
+$MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Invalid WebsiteBaker language file. Please check the text file.';
+
+$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'You must enter details for the following fields';
+$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.';
+$MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'The verification number (also known as Captcha) that you entered is incorrect. If you are having problems reading the Captcha, please email: '.SERVER_EMAIL.'';
+
+$MESSAGE['ADDON']['RELOAD'] = 'Update database with information from Add-on files (e.g. after FTP upload).';
+$MESSAGE['ADDON']['ERROR_RELOAD'] = 'Error while updating the Add-On information.';
+$MESSAGE['ADDON']['MODULES_RELOADED'] = 'Modules reloaded successfully';
+$MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Templates reloaded successfully';
+$MESSAGE['ADDON']['LANGUAGES_RELOADED'] = 'Languages reloaded successfully';
+$MESSAGE['ADDON']['PRECHECK_FAILED'] = 'Add-on installation failed. Your system does not fulfill the requirements of this Add-on. To make this Add-on working on your system, please fix the issues summarized below.';
+$MESSAGE['ADDON']['MANUAL_INSTALLATION'] = 'When modules are uploaded via FTP (not recommended), the module installation files <tt>install.php</tt>, <tt>upgrade.php</tt> or <tt>uninstall.php</tt> will not be executed automatically. Those modules may not work correct or do not uninstall properly.<br /><br />You can execute the module files manually for modules uploaded via FTP below.';
+$MESSAGE['ADDON']['MANUAL_INSTALLATION_WARNING'] = 'Warning: Existing module database entries will get lost. Only use this option if you experience problems with modules uploaded via FTP.';
+
+?>
\ No newline at end of file
Index: branches/2.8.x/wb/languages/CS.php
===================================================================
--- branches/2.8.x/wb/languages/CS.php	(revision 1312)
+++ branches/2.8.x/wb/languages/CS.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-mail byl &uacute;sp&#283;&scaron;n&#283; ulo&#382;en';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Sou&#269;asn&eacute; heslo neodpov&iacute;d&aacute;';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Heslo bylo &uacute;sp&#283;&scaron;n&#283; zm&#283;n&#283;no';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: zm&#283;na &scaron;ablony se prov&aacute;d&iacute; v sekci Nastaven&iacute;';
 
Index: branches/2.8.x/wb/languages/SE.php
===================================================================
--- branches/2.8.x/wb/languages/SE.php	(revision 1312)
+++ branches/2.8.x/wb/languages/SE.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-postadressen uppdaterades';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Det (nuvarande) l&ouml;senordet du skrev &auml;r inte r&auml;tt';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'L&ouml;senordet &auml;ndrades';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Observera: f&ouml;r att &auml;ndra Mall, m&aring;ste du g&aring; till Sektionen Inst&auml;llningar';
 
Index: branches/2.8.x/wb/languages/ES.php
===================================================================
--- branches/2.8.x/wb/languages/ES.php	(revision 1312)
+++ branches/2.8.x/wb/languages/ES.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email guardado';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'El (actual) es incorrecto';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Contrase&ntilde;a cambiada';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Atenci&oacute;n: para cambiar la plantilla ir a la secci&oacute;n de Configuraci&oacute;n';
 
Index: branches/2.8.x/wb/languages/FR.php
===================================================================
--- branches/2.8.x/wb/languages/FR.php	(revision 1312)
+++ branches/2.8.x/wb/languages/FR.php	(revision 1313)
@@ -429,8 +429,8 @@
 $TEXT['NOT_INSTALLED'] = "non install&eacute;";
 $TEXT['ADDON'] = "Extension";
 $TEXT['EXTENSION'] = "Extension";
-$TEXT['UNZIP_FILE'] = "Uploader et décompresser l&apos;archive zip";
-$TEXT['DELETE_ZIP'] = "Effacer l&apos;archive zip après décompression";
+$TEXT['UNZIP_FILE'] = "Uploader et dï¿½compresser l&apos;archive zip";
+$TEXT['DELETE_ZIP'] = "Effacer l&apos;archive zip aprï¿½s dï¿½compression";
 
 // Success/error messages
 $MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'D&eacute;sol&eacute;, vous n&apos;avez pas les droits pour visualiser cette page';
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Adresse email sauvegard&eacute;e avec succ&egrave;s';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Le mot de passe entr&eacute; est incorrect';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Mot de passe modifi&eacute; avec succ&egrave;s';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Pour modifier le th&egrave;me du site, vous devez vous rendre dans la rubrique R&eacute;glages';
 
@@ -568,7 +569,7 @@
 $MESSAGE['GENERIC']['INVALID'] = 'Le fichier charg&eacute; est invalide';
 $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = 'D&eacute;sinstallation impossible : fichier en cours d&apos;utilisation';
 
-$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = "<br /><br />{{type}} <b>{{type_name}}</b> ne peut pas &ecirc;tre déinstall&eacute; car il est actuellement en cours d'utilisation dans les pages {{pages}}.<br /><br />";
+$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL'] = "<br /><br />{{type}} <b>{{type_name}}</b> ne peut pas &ecirc;tre dï¿½install&eacute; car il est actuellement en cours d'utilisation dans les pages {{pages}}.<br /><br />";
 $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE_TMPL_PAGES'] = "cette page;ces pages";
 $MESSAGE['GENERIC']['CANNOT_UNINSTALL_IS_DEFAULT_TEMPLATE'] = "Impossible de d&eacute;sinstaller le mod&egrave;le <b>{{name}}</b> parce que c'est le mod&egrave;le par d&eacute;faut !";
 
Index: branches/2.8.x/wb/languages/ET.php
===================================================================
--- branches/2.8.x/wb/languages/ET.php	(revision 1312)
+++ branches/2.8.x/wb/languages/ET.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email edukalt uuendatud';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Pragune parool mida sa sisestasid on vigane';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Parool edukalt muudetud';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'M&auml;rge: kujunduse muutmiseks sa pead minema Seadete sektsiooni';
 
Index: branches/2.8.x/wb/languages/HR.php
===================================================================
--- branches/2.8.x/wb/languages/HR.php	(revision 1312)
+++ branches/2.8.x/wb/languages/HR.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email je snimljen uspje&scaron;no';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Une&scaron;ena lozinka nije to&egrave;na';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Lozinka je uspje&scaron;no izmjenjena';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Obavijest: Za promjenu predlo&scaron;ka idite na dio s Postavkama';
 
Index: branches/2.8.x/wb/languages/NL.php
===================================================================
--- branches/2.8.x/wb/languages/NL.php	(revision 1312)
+++ branches/2.8.x/wb/languages/NL.php	(revision 1313)
@@ -502,6 +502,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-mail gewijzigd';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Het (huidige) ingevoerde wachtwoord is niet correct';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Wachtwoord gewijzigd';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Attentie: Om de template aan te passen moet u naar de instellingensectie';
 
Index: branches/2.8.x/wb/languages/PL.php
===================================================================
--- branches/2.8.x/wb/languages/PL.php	(revision 1312)
+++ branches/2.8.x/wb/languages/PL.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-mail zosta&#322; zaktualizowany';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = '(Bie&#380;&#261;ce) has&#322;o jest nieprawid&#322;owe';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Has&#322;o zosta&#322;o zmienione';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Uwaga: aby zmieni&#263; szablon, nale&#380;y przej&#347;&#263; do sekcji Ustawienia';
 
Index: branches/2.8.x/wb/languages/HU.php
===================================================================
--- branches/2.8.x/wb/languages/HU.php	(revision 1312)
+++ branches/2.8.x/wb/languages/HU.php	(revision 1313)
@@ -505,6 +505,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-mail frissÃ­tve';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'A jelenlegi jelszÃ³ hibÃ¡s';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'A jelszÃ³ sikeresen megvÃ¡ltozott';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Figyelem: A sablon megvÃ¡ltoztatÃ¡sÃ¡t a beÃ¡llÃ­tÃ¡sokban teheti meg';
 
Index: branches/2.8.x/wb/languages/IT.php
===================================================================
--- branches/2.8.x/wb/languages/IT.php	(revision 1312)
+++ branches/2.8.x/wb/languages/IT.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email aggiornata';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'La password corrente inserita &egrave; errata';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Password cambiata';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Per cambiare il Template andare alla sezione Impostazioni';
 
Index: branches/2.8.x/wb/languages/NO.php
===================================================================
--- branches/2.8.x/wb/languages/NO.php	(revision 1312)
+++ branches/2.8.x/wb/languages/NO.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Lykkes &aring; oppdatere e-post';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Passordet du skrev inn er ikke korrekt';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Lykkes &aring; endre passord';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Merk: For &aring; endre malen m&aring; man gj&oslash;re dette i Instillinger seksjonen';
 
@@ -576,7 +577,7 @@
 $MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Vennligst kom tilbake p&aring; et annet tidspunkt...';
 $MESSAGE['GENERIC']['PLEASE_BE_PATIENT'] = 'Vennligst v&aelig;r t&aring;lmodig, dette kan ta en stund.';
 $MESSAGE['GENERIC']['ERROR_OPENING_FILE'] = 'Feil ved &aring;pningen av filen.';
-$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Feil i WebsiteBaker installasjons filen. Vennligst sjekk formatet på *.zip filen.';
+$MESSAGE['GENERIC']['INVALID_ADDON_FILE'] = 'Feil i WebsiteBaker installasjons filen. Vennligst sjekk formatet pï¿½ *.zip filen.';
 $MESSAGE['GENERIC']['INVALID_LANGUAGE_FILE'] = 'Feil i WebsiteBaker spr&aring;k filen. Vennligst sjekk tekst filen.';
 
 $MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'Du m&aring; skrive inn detaljer for f&oslash;lgende felt';
@@ -583,7 +584,7 @@
 $MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Beklager, dette skjemaet har blitt sendt for mange ganger denne timen. Vennligst pr&oslash;v igjen om en time.';
 $MESSAGE['MOD_FORM']['INCORRECT_CAPTCHA'] = 'Bekreftelsesnummeret (ogs&aring; kjent som Captcha) som du skrev inn er feil. Hvis du har problemer med &aring; lese Captcha, vennligst kontakt: '.SERVER_EMAIL.'';
 
-$MESSAGE['ADDON']['RELOAD'] = 'Oppdater databasen med innformasjon fra Tilleggs filen (for eksempel etter å ha lastet opp via FTP).';
+$MESSAGE['ADDON']['RELOAD'] = 'Oppdater databasen med innformasjon fra Tilleggs filen (for eksempel etter ï¿½ ha lastet opp via FTP).';
 $MESSAGE['ADDON']['ERROR_RELOAD'] = 'En feil oppstod under oppdateringen av Tilleggs innformasjonen.';
 $MESSAGE['ADDON']['MODULES_RELOADED'] = 'Lykkes i &aring; oppdatere moduler';
 $MESSAGE['ADDON']['TEMPLATES_RELOADED'] = 'Lykkes i &aring; oppdatere maler';
Index: branches/2.8.x/wb/languages/SK.php
===================================================================
--- branches/2.8.x/wb/languages/SK.php	(revision 1312)
+++ branches/2.8.x/wb/languages/SK.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-mail bol &uacute;spe&#353;ne ulo&#382;en&yacute;';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'S&uacute;&#269;asn&eacute; heslo nezodpoved&aacute;';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Heslo bolo &uacute;spe&#353;ne zmenen&eacute;';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Pozn.: zmena &#353;ablony sa prov&aacute;dza v sekcii Nastavenia';
 
Index: branches/2.8.x/wb/languages/LV.php
===================================================================
--- branches/2.8.x/wb/languages/LV.php	(revision 1312)
+++ branches/2.8.x/wb/languages/LV.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-pasta adrese tika veiksmigi atjauninata';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Ievadita (eso&scaron;a) parole nav pareiza';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Parole veiksmigi nomainita';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Ludzu iegaume: lai mainitu &scaron;ablonu, jadotas uz iestatijumu sadalu';
 
Index: branches/2.8.x/wb/languages/CA.php
===================================================================
--- branches/2.8.x/wb/languages/CA.php	(revision 1312)
+++ branches/2.8.x/wb/languages/CA.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Correu actualitzat amb &egrave;xit';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'La contrasenya (actual) que heu introdu&iuml;t &eacute;s incorrecta';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Contrasenya canviada amb &egrave;xit';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Av&iacute;s: per a canviar la plantilla heu d\'anar a la secci&oacute; Par&agrave;metres';
 
Index: branches/2.8.x/wb/languages/PT.php
===================================================================
--- branches/2.8.x/wb/languages/PT.php	(revision 1312)
+++ branches/2.8.x/wb/languages/PT.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email atualizado com sucesso';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'A senha(atual) informada n&atilde;o est&aacute; correta';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Senha alterada com sucesso';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Aten&ccdil;&atilde;o: para alterar o tema (template) voc&ecirc; precisa ir at&eacute; a sess&atilde;o Configura&ccdil;&otilde;es';
 
Index: branches/2.8.x/wb/languages/DA.php
===================================================================
--- branches/2.8.x/wb/languages/DA.php	(revision 1312)
+++ branches/2.8.x/wb/languages/DA.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email-adresse opdateret';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Den (nuv&aelig;rende) adgangskode som du indtastede er ikke korrekt';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Adgangskode &aelig;ndret';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'OBS: For at &aelig;ndre skabelonen skal du g&aring; til punktet indstillinger';
 
Index: branches/2.8.x/wb/languages/TR.php
===================================================================
--- branches/2.8.x/wb/languages/TR.php	(revision 1312)
+++ branches/2.8.x/wb/languages/TR.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekilde g&uuml;ncelle&thorn;tirdi';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Girdi&eth;iniz &thorn;ifre yanl&yacute;&thorn;';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Parola, ba&thorn;ar&yacute;l&yacute; bir &thorn;ekilde de&eth;i&thorn;tirdi';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section';
 
Index: branches/2.8.x/wb/languages/RU.php
===================================================================
--- branches/2.8.x/wb/languages/RU.php	(revision 1312)
+++ branches/2.8.x/wb/languages/RU.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email &#1086;&#1073;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = '&#1058;&#1077;&#1082;&#1091;&#1097;&#1080;&#1081; &#1087;&#1072;&#1088;&#1086;&#1083;&#1100;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1074;&#1099; &#1074;&#1074;&#1077;&#1083;&#1080;, &#1085;&#1077;&#1087;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1099;&#1081;';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = '&#1055;&#1072;&#1088;&#1086;&#1083;&#1100; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = '&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;! &#1063;&#1090;&#1086;&#1073;&#1099; &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1096;&#1072;&#1073;&#1083;&#1086;&#1085; &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; "&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1080;"';
 
Index: branches/2.8.x/wb/languages/DE.php
===================================================================
--- branches/2.8.x/wb/languages/DE.php	(revision 1312)
+++ branches/2.8.x/wb/languages/DE.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'E-Mail Einstellung ge&auml;ndert';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'Das alte Passwort, das Sie angegeben haben, ist ung&uuml;ltig';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Das Passwort wurde erfolgreich ge&auml;ndert';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Es wurden ungÃ¼ltige Zeichen fÃ¼r des Passwort verwendet';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Bitte beachten Sie: Um eine andere Designvorlage auszuw&auml;hlen, benutzen Sie den Bereich "Optionen"';
 
Index: branches/2.8.x/wb/languages/BG.php
===================================================================
--- branches/2.8.x/wb/languages/BG.php	(revision 1312)
+++ branches/2.8.x/wb/languages/BG.php	(revision 1313)
@@ -503,6 +503,7 @@
 $MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email-&#1072; &#1086;&#1073;&#1085;&#1086;&#1074;&#1077;&#1085; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
 $MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = '&#1042;&#1098;&#1074;&#1077;&#1076;&#1077;&#1085;&#1072;&#1090;&#1072; &#1090;&#1077;&#1082;&#1091;&#1097;&#1072; &#1087;&#1072;&#1088;&#1086;&#1083;&#1072; &#1085;&#1077; &#1077; &#1082;&#1086;&#1088;&#1077;&#1082;&#1090;&#1085;&#1072;';
 $MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = '&#1055;&#1072;&#1088;&#1086;&#1083;&#1072;&#1090;&#1072; &#1089;&#1084;&#1077;&#1085;&#1077;&#1085;&#1072; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;';
+$MESSAGE['PREFERENCES']['INVALID_CHARS'] = 'Invalid password chars used';
 
 $MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = '&#1042;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;: &#1079;&#1072; &#1076;&#1072; &#1089;&#1084;&#1077;&#1085;&#1080;&#1090;&#1077; &#1096;&#1072;&#1073;&#1083;&#1086;&#1085;&#1072; &#1086;&#1090;&#1080;&#1076;&#1077;&#1090;&#1077; &#1074; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080;';
 
Index: branches/2.8.x/wb/modules/show_menu2/info.php
===================================================================
--- branches/2.8.x/wb/modules/show_menu2/info.php	(revision 1312)
+++ branches/2.8.x/wb/modules/show_menu2/info.php	(revision 1313)
@@ -19,7 +19,7 @@
 $module_directory = 'show_menu2';
 $module_name = 'show_menu2';
 $module_function = 'snippet';
-$module_version = '4.9';
+$module_version = '4.9.1';
 $module_platform = '2.7 | 2.8.x';
 $module_author = 'Brodie Thiesfield';
 $module_license = 'GNU General Public License';
Index: branches/2.8.x/wb/modules/show_menu2/include.php
===================================================================
--- branches/2.8.x/wb/modules/show_menu2/include.php	(revision 1312)
+++ branches/2.8.x/wb/modules/show_menu2/include.php	(revision 1313)
@@ -365,7 +365,7 @@
             $this->output($this->itemClose);
         }
     }
-    
+
     // finish the current menu
     function finishList() {
         $this->prettyLevel -= 3;
@@ -449,7 +449,7 @@
     $CURR_PAGE_ID = defined('REFERRER_ID') ? REFERRER_ID : PAGE_ID;
     if (count($wb->page) == 0 && defined('REFERRER_ID') && REFERRER_ID > 0) {
         global $database;
-        $sql = "SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '".REFERRER_ID."'";
+        $sql = 'SELECT * FROM `'.TABLE_PREFIX.'pages` WHERE `page_id` = '.REFERRER_ID.'';
         $result = $database->query($sql);
         if ($result->numRows() == 1) {
             $wb->page = $result->fetchRow();
@@ -520,15 +520,9 @@
         if ($flags & SM2_ALLINFO) {
             $fields = '*';
         }
-        
-        // get this once for performance. We really should be calling only need to
-        // call $wb->get_group_id() but that outputs a warning notice if the 
-        // groupid isn't set in the session, so we check it first here.
-        $currGroup = array_key_exists('GROUP_ID', $_SESSION) ? 
-            ','.$wb->get_group_id().',' : 'NOGROUP';
-        
-        // we request all matching rows from the database for the menu that we 
-        // are about to create it is cheaper for us to get everything we need 
+
+        // we request all matching rows from the database for the menu that we
+        // are about to create it is cheaper for us to get everything we need
         // from the database once and create the menu from memory then make 
         // multiple calls to the database. 
         $sql = "SELECT $fields FROM ".TABLE_PREFIX.
@@ -557,17 +551,6 @@
                         continue;
                     }
                 }
-                else {  // WB < 2.7
-                    // We can't do this in SQL as the viewing_groups column contains multiple 
-                    // values which are hard to process correctly in SQL. Essentially we add the
-                    // following limit to the SQL query above:
-                    //  (visibility <> "private" OR $wb->get_group_id() IN viewing_groups)
-                    if ($page['visibility'] == 'private' 
-                        && false === strstr(",{$page['viewing_groups']},", $currGroup)) 
-                    {
-                        continue;
-                    }
-                }
 
                 // ensure that we have an array entry in the table to add this to
                 $idx = $page['parent'];
