Index: trunk/wb/admin/login/forgot/index.php
===================================================================
--- trunk/wb/admin/login/forgot/index.php	(revision 332)
+++ trunk/wb/admin/login/forgot/index.php	(revision 333)
@@ -158,6 +158,14 @@
 }
 $template->set_var('INTERFACE_URL', ADMIN_URL.'/interface');	
 
+if(defined('DEFAULT_CHARSET')) {
+	$charset=DEFAULT_CHARSET;
+} else {
+	$charset='utf-8';
+}
+
+$template->set_var('CHARSET', $charset);	
+
 $template->parse('main', 'main_block', false);
 $template->pparse('output', 'page');
 
Index: trunk/wb/admin/login/forgot/template.html
===================================================================
--- trunk/wb/admin/login/forgot/template.html	(revision 332)
+++ trunk/wb/admin/login/forgot/template.html	(revision 333)
@@ -3,7 +3,7 @@
 <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=utf-8" />
+<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
 <link href="{INTERFACE_URL}/stylesheet.css" rel="stylesheet" type="text/css">
 </head>
 <body onload="document.forgot_pass.email.focus();">
Index: trunk/wb/admin/login/template.html
===================================================================
--- trunk/wb/admin/login/template.html	(revision 332)
+++ trunk/wb/admin/login/template.html	(revision 333)
@@ -3,7 +3,7 @@
 <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=utf-8" />
+<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
 <link href="{INTERFACE_DIR_URL}/stylesheet.css" rel="stylesheet" type="text/css">
 </head>
 <body onload="document.login.{USERNAME_FIELDNAME}.focus();">
Index: trunk/wb/framework/class.login.php
===================================================================
--- trunk/wb/framework/class.login.php	(revision 332)
+++ trunk/wb/framework/class.login.php	(revision 333)
@@ -357,6 +357,15 @@
 											'SECTION_LOGIN' => $MENU['LOGIN']
 											)
 									);
+			if(defined('DEFAULT_CHARSET')) {
+				$charset=DEFAULT_CHARSET;
+			} else {
+				$charset='utf-8';
+			}
+			
+			$template->set_var('CHARSET', $charset);	
+									
+									
 			$template->parse('main', 'mainBlock', false);
 			$template->pparse('output', 'page');
 		}
