|
Revision 4570, 295 bytes
(checked in by erijo, 2 years ago)
|
|
Undo r4567 since rms-web has not been replaced by licqweb.
Also fixed most of the images (they were broken) by copying them from
licqweb.
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | include "check_session.php"; |
|---|
| 3 | include "rms.php"; |
|---|
| 4 | include "config.php"; |
|---|
| 5 | |
|---|
| 6 | $cmd = $_POST["cmd"]; |
|---|
| 7 | |
|---|
| 8 | switch($cmd) |
|---|
| 9 | { |
|---|
| 10 | case "chgStatus": |
|---|
| 11 | $newStatus = $_POST["status"]; |
|---|
| 12 | rmsLogin($username, $password); |
|---|
| 13 | rmsChangeStatus($newStatus); |
|---|
| 14 | |
|---|
| 15 | header("Location: list.php"); |
|---|
| 16 | break; |
|---|
| 17 | } |
|---|
| 18 | |
|---|
| 19 | ?> |
|---|