summaryrefslogtreecommitdiffstats
path: root/server/ajax.server.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 01:35:59 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 01:35:59 -0500
commit136f9f58569c6a6b52d6b9589fabf29950178cd7 (patch)
tree2655fbc3acd99489840e0d8c6812a99386f7c593 /server/ajax.server.php
parentd572c2776f5ab7f66a632f54006dabe2f159c02b (diff)
downloadampache-136f9f58569c6a6b52d6b9589fabf29950178cd7.tar.gz
ampache-136f9f58569c6a6b52d6b9589fabf29950178cd7.tar.bz2
ampache-136f9f58569c6a6b52d6b9589fabf29950178cd7.zip
Move ajax_include() from ui.lib.php to UI
Diffstat (limited to 'server/ajax.server.php')
-rw-r--r--server/ajax.server.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/ajax.server.php b/server/ajax.server.php
index 46ed92c5..55739b8d 100644
--- a/server/ajax.server.php
+++ b/server/ajax.server.php
@@ -91,7 +91,7 @@ switch ($page) {
switch ($_REQUEST['action']) {
case 'refresh_rightbar':
- $results['rightbar'] = ajax_include('rightbar.inc.php');
+ $results['rightbar'] = UI::ajax_include('rightbar.inc.php');
break;
/* Controls the editing of objects */
case 'show_edit_object':
@@ -255,7 +255,7 @@ switch ($_REQUEST['action']) {
break;
} // end switch
- $results['rightbar'] = ajax_include('rightbar.inc.php');
+ $results['rightbar'] = UI::ajax_include('rightbar.inc.php');
break;
// Handle the users basketcases...
case 'basket':
@@ -331,7 +331,7 @@ switch ($_REQUEST['action']) {
break;
} // end switch
- $results['rightbar'] = ajax_include('rightbar.inc.php');
+ $results['rightbar'] = UI::ajax_include('rightbar.inc.php');
break;
/* Setting ratings */
case 'set_rating':