Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 1080)
+++ trunk/CHANGELOG	(revision 1081)
@@ -12,6 +12,7 @@
 
 ------------------------------------- 2.8.0 -------------------------------------
 18-July 2009 Matthias Gallas
++	Added more meta tags to backend themes
 !	Updated Argos_theme (Thanks to Argos and Luisehahne)
 #	Again added some &amp; to news and form to get more valid output (Thanks to Luisehahne)
 #	Fixed wrong set </form> tag to get valid output (Thanks to Luisehahne)
Index: trunk/wb/admin/login/forgot/index.php
===================================================================
--- trunk/wb/admin/login/forgot/index.php	(revision 1080)
+++ trunk/wb/admin/login/forgot/index.php	(revision 1081)
@@ -140,6 +140,7 @@
 								'WB_URL' => WB_URL,
 								'ADMIN_URL' => ADMIN_URL,
 								'THEME_URL' => THEME_URL,
+								'LANGUAGE' => strtolower(LANGUAGE),
 								'TEXT_EMAIL' => $TEXT['EMAIL'],
 								'TEXT_SEND_DETAILS' => $TEXT['SEND_DETAILS'],
 								'TEXT_HOME' => $TEXT['HOME'],
Index: trunk/wb/framework/class.admin.php
===================================================================
--- trunk/wb/framework/class.admin.php	(revision 1080)
+++ trunk/wb/framework/class.admin.php	(revision 1081)
@@ -139,6 +139,7 @@
 													'CURRENT_USER' => $MESSAGE['START']['CURRENT_USER'],
 													'DISPLAY_NAME' => $this->get_display_name(),
 													'CHARSET' => $charset,
+													'LANGUAGE' => strtolower(LANGUAGE),
 													'VERSION' => VERSION,
 													'WB_URL' => WB_URL,
 													'ADMIN_URL' => ADMIN_URL,
Index: trunk/wb/framework/class.login.php
===================================================================
--- trunk/wb/framework/class.login.php	(revision 1080)
+++ trunk/wb/framework/class.login.php	(revision 1081)
@@ -386,6 +386,7 @@
 											'MAX_PASSWORD_LEN' => $this->max_password_len,
 											'WB_URL' => WB_URL,
 											'THEME_URL' => THEME_URL,
+											'LANGUAGE' => strtolower(LANGUAGE),
 											'FORGOTTEN_DETAILS_APP' => $this->forgotten_details_app,
 											'TEXT_FORGOTTEN_DETAILS' => $TEXT['FORGOTTEN_DETAILS'],
 											'TEXT_USERNAME' => $TEXT['USERNAME'],
Index: trunk/wb/templates/classic_theme/templates/header.htt
===================================================================
--- trunk/wb/templates/classic_theme/templates/header.htt	(revision 1080)
+++ trunk/wb/templates/classic_theme/templates/header.htt	(revision 1081)
@@ -4,6 +4,9 @@
 <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" />
 <link href="{WB_URL}/include/jquery/plugins/jquery-ui.css" rel="stylesheet" type="text/css" />
 {BACKEND_MODULE_CSS}
Index: trunk/wb/templates/classic_theme/templates/login_forgot.htt
===================================================================
--- trunk/wb/templates/classic_theme/templates/login_forgot.htt	(revision 1080)
+++ trunk/wb/templates/classic_theme/templates/login_forgot.htt	(revision 1081)
@@ -4,7 +4,10 @@
 <head>
 <title>Retrieve Login Details</title>
 <meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
-<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css">
+<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();">
 
Index: trunk/wb/templates/classic_theme/templates/login.htt
===================================================================
--- trunk/wb/templates/classic_theme/templates/login.htt	(revision 1080)
+++ trunk/wb/templates/classic_theme/templates/login.htt	(revision 1081)
@@ -4,6 +4,9 @@
 <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();">
Index: trunk/wb/templates/wb_theme/templates/header.htt
===================================================================
--- trunk/wb/templates/wb_theme/templates/header.htt	(revision 1080)
+++ trunk/wb/templates/wb_theme/templates/header.htt	(revision 1081)
@@ -4,6 +4,9 @@
 <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" />
 <link href="{WB_URL}/include/jquery/plugins/jquery-ui.css" rel="stylesheet" type="text/css" />
 {BACKEND_MODULE_CSS}
Index: trunk/wb/templates/wb_theme/templates/login_forgot.htt
===================================================================
--- trunk/wb/templates/wb_theme/templates/login_forgot.htt	(revision 1080)
+++ trunk/wb/templates/wb_theme/templates/login_forgot.htt	(revision 1081)
@@ -4,7 +4,10 @@
 <head>
 <title>Retrieve Login Details</title>
 <meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
-<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css">
+<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();">
 
Index: trunk/wb/templates/wb_theme/templates/login.htt
===================================================================
--- trunk/wb/templates/wb_theme/templates/login.htt	(revision 1080)
+++ trunk/wb/templates/wb_theme/templates/login.htt	(revision 1081)
@@ -4,6 +4,9 @@
 <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();">
Index: trunk/wb/templates/argos_theme/templates/login_forgot.htt
===================================================================
--- trunk/wb/templates/argos_theme/templates/login_forgot.htt	(revision 1080)
+++ trunk/wb/templates/argos_theme/templates/login_forgot.htt	(revision 1081)
@@ -4,7 +4,10 @@
 <head>
 <title>Retrieve Login Details</title>
 <meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
-<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css">
+<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();">
 
Index: trunk/wb/templates/argos_theme/templates/login.htt
===================================================================
--- trunk/wb/templates/argos_theme/templates/login.htt	(revision 1080)
+++ trunk/wb/templates/argos_theme/templates/login.htt	(revision 1081)
@@ -4,6 +4,9 @@
 <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();">
Index: trunk/wb/templates/argos_theme/templates/header.htt
===================================================================
--- trunk/wb/templates/argos_theme/templates/header.htt	(revision 1080)
+++ trunk/wb/templates/argos_theme/templates/header.htt	(revision 1081)
@@ -4,6 +4,9 @@
 <head>
 <title>{WEBSITE_TITLE}&raquo;{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" />
 <link href="{WB_URL}/include/jquery/plugins/jquery-ui.css" rel="stylesheet" type="text/css" />
 {BACKEND_MODULE_CSS}
