diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-17 03:56:58 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-17 03:56:58 +0000 |
commit | d23122dffafa40415b1496c240ebd0b27619ef0f (patch) | |
tree | f165a28f175f4abbe756c58aec9b579b76fdcbe7 /templates/show_login_form.inc.php | |
parent | a5d4acd8469d571c39f004431836f13d0ef1a5b6 (diff) | |
download | ampache-d23122dffafa40415b1496c240ebd0b27619ef0f.tar.gz ampache-d23122dffafa40415b1496c240ebd0b27619ef0f.tar.bz2 ampache-d23122dffafa40415b1496c240ebd0b27619ef0f.zip |
fixed mailing functions
Diffstat (limited to 'templates/show_login_form.inc.php')
-rw-r--r-- | templates/show_login_form.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_login_form.inc.php b/templates/show_login_form.inc.php index 36b38ef0..7f564e9f 100644 --- a/templates/show_login_form.inc.php +++ b/templates/show_login_form.inc.php @@ -35,7 +35,7 @@ $htmllang = str_replace("_","-",Config::get('lang')); <link rel="stylesheet" href="<?php echo Config::get('web_path'); ?>/templates/print.css" type="text/css" media="print" /> <link rel="stylesheet" href="<?php echo Config::get('web_path'); ?>/templates/handheld.css" type="text/css" media="handheld" /> <link rel="stylesheet" href="<?php echo Config::get('web_path'); ?><?php echo Config::get('theme_path'); ?>/templates/default.css" type="text/css" media="screen" /> -<title> <?php echo Config::get('site_title'); ?> </title> +<title> <?php echo scrub_out(Config::get('site_title')); ?> </title> <script type="text/javascript" language="javascript"> function focus(){ document.login.username.focus(); } </script> @@ -51,7 +51,7 @@ function focus(){ document.login.username.focus(); } </h1> </div> <div id="loginbox"> - <h2><?php echo Config::get('site_title'); ?></h2> + <h2><?php echo scrub_out(Config::get('site_title')); ?></h2> <form name="login" method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/login.php"> <div class="loginfield" id="usernamefield"> |