diff options
author | spocky <spocky@ampache> | 2007-10-15 21:02:50 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-10-15 21:02:50 +0000 |
commit | b49eff3e1330025e202d2ff22dc27da9583f5b2b (patch) | |
tree | 3ec5f30c3e533519c936abf454bd40f1dbb7397f /lib | |
parent | 0f0ec52f25badff588468177b3e80c10c92b3a30 (diff) | |
download | ampache-b49eff3e1330025e202d2ff22dc27da9583f5b2b.tar.gz ampache-b49eff3e1330025e202d2ff22dc27da9583f5b2b.tar.bz2 ampache-b49eff3e1330025e202d2ff22dc27da9583f5b2b.zip |
Updated ajax loader
Updated pager html/css
Fixed some Greysme's bugs
Didn't fix ajax links w3c conformance :)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/ajax.class.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/class/ajax.class.php b/lib/class/ajax.class.php index 2c0c9aff..f5984912 100644 --- a/lib/class/ajax.class.php +++ b/lib/class/ajax.class.php @@ -81,7 +81,13 @@ class Ajax { else { $source_txt = "'$source'"; } - + + /* + Replaces ampersand with & for w3c conformance. + Fixme: ajax doesn't seem to work anymore with this... + */ + //$url = htmlspecialchars($url); + if ($post) { $ajax_string = "ajaxPost('$url','$post',$source_txt)"; } |