Magellan Linux

Diff of /alx-src/branches/alx-web-050/loc.php

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

revision 1609 by niro, Thu Dec 2 19:56:40 2010 UTC revision 1610 by niro, Thu Dec 2 23:02:19 2010 UTC
# Line 1  Line 1 
1  <?  <?
2   include('include/basesql.php');   include('include/basesql.php');
3   $data = sqlfirst('SELECT rsync,repository,updateserver,username FROM client_locations WHERE location=\''.redir(stripslashes($_GET['location'])).'\'');   $data = sqlfirst('SELECT rsync,repository,updateserver,username FROM client_locations WHERE location=\''.redir(stripslashes($_GET['location'])).'\'');
4   if($data==null) exit;   if($data==null) exit;
5    
6   if($_POST['do_upload'])   if($_POST['do_upload'])
7   {   {
8   $data = array( 'updateserver'=>$_POST['s_updateserver'],   $data = array( 'updateserver'=>$_POST['s_updateserver'],
9   'username'=>$_POST['s_username'],   'username'=>$_POST['s_username'],
10   'password'=>$_POST['s_password'],   'password'=>$_POST['s_password'],
11   'rsync'=>$_POST['s_rsync'],   'rsync'=>$_POST['s_rsync'],
12   'repository'=>$_POST['s_repository']);   'repository'=>$_POST['s_repository']);
13   if($data['password']=='KEEPPASS') unset($data['password']);   if($data['password']=='KEEPPASS') unset($data['password']);
14   mysql_query('UPDATE client_locations SET '.updatestr($data).' WHERE location=\''.redir(stripslashes($_GET['location'])).'\'');   mysql_query('UPDATE client_locations SET '.updatestr($data).' WHERE location=\''.redir(stripslashes($_GET['location'])).'\'');
15   }   }
16  ?>  ?>
17  <head>  <head>
18   <title>ALX Config</title>   <title>ALX Config</title>
19   <style>   <style>
20   body,table { font-family:Tahoma; font-size:8pt }   body,table { font-family:Tahoma; font-size:8pt }
21   a { color:#000000; text-decoration:none; }   a { color:#000000; text-decoration:none; }
22   input { font-size:8pt; font-family:Tahoma }   input { font-size:8pt; font-family:Tahoma }
23   </style>   </style>
24  </head>  </head>
25  <body>  <body>
26   <form action="" method="post">   <form action="" method="post">
27   <input type="hidden" name="do_upload" value="1" />   <input type="hidden" name="do_upload" value="1" />
28   <table>   <table>
29   <tr> <td colspan="2" style="font-size:10pt"><b>[location_<? echo stripslashes($_GET['location']); ?>]</b> </td></tr>   <tr> <td colspan="2" style="font-size:10pt"><b>[location_<? echo stripslashes($_GET['location']); ?>]</b> </td></tr>
30   <tr> <td>rsync =</td> <td><input name="s_rsync" value="<? echo $data['rsync']; ?>" /></td> </tr>   <tr> <td>rsync =</td> <td><input name="s_rsync" value="<? echo $data['rsync']; ?>" /></td> </tr>
31   <tr> <td>repository =</td> <td><input name="s_repository" value="<? echo $data['repository']; ?>" /></td> </tr>   <tr> <td>repository =</td> <td><input name="s_repository" value="<? echo $data['repository']; ?>" /></td> </tr>
32   <tr> <td width="100">updateserver =</td> <td><input name="s_updateserver" value="<? echo $data['updateserver']; ?>" /></td> </tr>   <tr> <td width="100">updateserver =</td> <td><input name="s_updateserver" value="<? echo $data['updateserver']; ?>" /></td> </tr>
33   <tr> <td>username =</td> <td><input name="s_username" value="<? echo $data['username']; ?>" /></td> </tr>   <tr> <td>username =</td> <td><input name="s_username" value="<? echo $data['username']; ?>" /></td> </tr>
34   <tr> <td>password =</td> <td><input name="s_password" value="KEEPPASS" type="password" /></td> </tr>   <tr> <td>password =</td> <td><input name="s_password" value="KEEPPASS" type="password" /></td> </tr>
35   <tr> <td colspan="2" align="right"><input type="submit" value="SAVE"></td></tr>   <tr> <td colspan="2" align="right"><input type="submit" value="SAVE"></td></tr>
36   </table>   </table>
37   </form>   </form>
38  </body>  </body>

Legend:
Removed from v.1609  
changed lines
  Added in v.1610