diff options
author | xgizzmo <xgizzmo@ampache> | 2007-08-07 02:06:47 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2007-08-07 02:06:47 +0000 |
commit | 923cc2741f4202b7e879beabd15b20f49cce31ee (patch) | |
tree | 7d15757785ded59f73186b5be570d41934325604 /lib/class/ajax.class.php | |
parent | 462232901205bced3d150f2ac7c8b0bafef00bca (diff) | |
download | ampache-923cc2741f4202b7e879beabd15b20f49cce31ee.tar.gz ampache-923cc2741f4202b7e879beabd15b20f49cce31ee.tar.bz2 ampache-923cc2741f4202b7e879beabd15b20f49cce31ee.zip |
removed <-uname -r work around thanks for nuttin IE
Diffstat (limited to 'lib/class/ajax.class.php')
-rw-r--r-- | lib/class/ajax.class.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/class/ajax.class.php b/lib/class/ajax.class.php index 8843cc4d..e8496e75 100644 --- a/lib/class/ajax.class.php +++ b/lib/class/ajax.class.php @@ -51,9 +51,9 @@ class Ajax { $source_txt = "'$source'"; } - $observe = "\n <script type=\"text/javascript\"><!--\n"; - $observe .= "\tEvent.observe($source_txt,'$method',function(){" . $action . ";});\n"; - $observe .= "--></script>\n"; + $observe = "<script type=\"text/javascript\">"; + $observe .= "Event.observe($source_txt,'$method',function(){" . $action . ";});"; + $observe .= "</script>"; return $observe; |