summaryrefslogtreecommitdiffstats
path: root/lib/class/ajax.class.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-10-15 21:02:50 +0000
committerspocky <spocky@ampache>2007-10-15 21:02:50 +0000
commitb49eff3e1330025e202d2ff22dc27da9583f5b2b (patch)
tree3ec5f30c3e533519c936abf454bd40f1dbb7397f /lib/class/ajax.class.php
parent0f0ec52f25badff588468177b3e80c10c92b3a30 (diff)
downloadampache-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/class/ajax.class.php')
-rw-r--r--lib/class/ajax.class.php8
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 &amp; 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)";
}