Magellan Linux

Diff of /alx-src/branches/alx-web-070/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 13242 by niro, Tue Jul 9 15:21:55 2019 UTC revision 13245 by niro, Wed Jul 10 08:54:02 2019 UTC
# Line 25  if($_SESSION['alx_sort_krit']==null) Line 25  if($_SESSION['alx_sort_krit']==null)
25  if(isset($_GET['s_krit']))  if(isset($_GET['s_krit']))
26  {  {
27   $_SESSION['alx_sort_krit']=$_GET['s_krit'];   $_SESSION['alx_sort_krit']=$_GET['s_krit'];
28   $_SESSION['alx_sort_onfirst']=0+$_GET['s_on'];  
29   $_SESSION['alx_sort_loc']['DEAD']=$_GET['s_dead'];   if(isset($_GET['s_on'])) $_SESSION['alx_sort_onfirst']=0+$_GET['s_on'];
30   foreach($locations as $l) $_SESSION['alx_sort_loc'][$l]=$_GET['s_'.$l];   else $_SESSION['alx_sort_onfirst']=0+NULL;
31    
32     if(isset($_GET['s_dead'])) $_SESSION['alx_sort_loc']['DEAD']=$_GET['s_dead'];
33     else $_SESSION['alx_sort_loc']['DEAD']=NULL;
34    
35     foreach($locations as $l) {
36     if(isset($_GET['s_'.$l])) $_SESSION['alx_sort_loc'][$l]=$_GET['s_'.$l];
37     else $_SESSION['alx_sort_loc'][$l]=NULL;
38     }
39  }  }
40    
41  function check_online($dat, $bla)  function check_online($dat, $bla)

Legend:
Removed from v.13242  
changed lines
  Added in v.13245