diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-11-25 04:33:57 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-11-25 04:33:57 +0000 |
commit | 3f79a732b6947eea00eb2da5dc63901e435541ae (patch) | |
tree | b34189c1c8ebe7789a109abef917c4c57a18a566 /usr | |
parent | b0d1849040b0ffcd39ceb598c07144e373217be1 (diff) | |
download | pfsense-3f79a732b6947eea00eb2da5dc63901e435541ae.zip pfsense-3f79a732b6947eea00eb2da5dc63901e435541ae.tar.gz |
Add isAjax handle
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/system_gateways_edit.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr/local/www/system_gateways_edit.php b/usr/local/www/system_gateways_edit.php index 4812e84..6297e15 100755 --- a/usr/local/www/system_gateways_edit.php +++ b/usr/local/www/system_gateways_edit.php @@ -149,6 +149,11 @@ if ($_POST) { write_config(); + if($_REQUEST['isAjax']) { + echo $_POST['name']; + exit; + } + header("Location: system_gateways.php"); exit; } |