Hierarchy fixup
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / eventz / set_listing_order.inc
diff --git a/wwwroot/inc/eventz/set_listing_order.inc b/wwwroot/inc/eventz/set_listing_order.inc
new file mode 100644 (file)
index 0000000..13bf7c7
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+
+function set_listing_order() {
+       global $db,$error;
+       $listing_order=$_POST['listing_order'];
+       $user_id=$_SESSION['user_id'];
+       if (!$user_id) {
+               return false;
+       }
+
+       $db->query("update users set listing_order='$listing_order' where user_id='$user_id'");
+       $_SESSION['listing_order']=$listing_order;
+}
+
+?>
This page took 0.11754 seconds and 4 git commands to generate.