diff options
author | xgizzmo <xgizzmo@ampache> | 2007-07-19 00:19:43 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2007-07-19 00:19:43 +0000 |
commit | b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e (patch) | |
tree | 6ffc0ed94bfd121d4d0bf9d0d9f658b95fc9fd84 /lib | |
parent | 6276d279e63da27c9021bd5b9aa7f0f6d2ee9580 (diff) | |
download | ampache-b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e.tar.gz ampache-b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e.tar.bz2 ampache-b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e.zip |
few fixups to pass W3C Validation Service (wip)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/search.php | 2 | ||||
-rw-r--r-- | lib/ui.lib.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/search.php b/lib/search.php index 2e91a3ef..061f8572 100644 --- a/lib/search.php +++ b/lib/search.php @@ -219,7 +219,7 @@ function search_song($data,$operator,$method,$limit) { */ $_SESSION['userdata']['stored_search'] = $sql; - //echo "DEBUG: $sql<BR>"; flush(); + //echo "DEBUG: $sql<br />"; flush(); $db_results = mysql_query($sql, dbh()); while ($r = mysql_fetch_assoc($db_results)) { diff --git a/lib/ui.lib.php b/lib/ui.lib.php index aa407adf..459e8424 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -1242,7 +1242,7 @@ function get_user_icon($name,$hover_name='',$title='') { $hov_url = Config::get('web_path') . '/images/' . $hover_icon; } - $hov_txt = "onMouseOver=\"this.src='$hov_url'; return true;\" onMouseOut=\"this.src='$img_url'; return true;\""; + $hov_txt = "onmouseover=\"this.src='$hov_url'; return true;\" onmouseout=\"this.src='$img_url'; return true;\""; } // end hover } // end if not cached |