Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / eventz / set_listing_order.inc
1 <?php
2 /* This program is free software. It comes without any warranty, to
3 * the extent permitted by applicable law. You can redistribute it
4 * and/or modify it under the terms of the Do What The Fuck You Want
5 * To Public License, Version 2, as published by Sam Hocevar. See
6 * http://sam.zoy.org/wtfpl/COPYING for more details. */
7
8
9 function set_listing_order() {
10 global $db,$error;
11 $listing_order=$_POST['listing_order'];
12 $user_id=$_SESSION['user_id'];
13 if (!$user_id) {
14 return false;
15 }
16
17 $db->query("update users set listing_order='$listing_order' where user_id='$user_id'");
18 $_SESSION['listing_order']=$listing_order;
19 }
20
21 ?>
This page took 0.260098 seconds and 4 git commands to generate.