diff options
author | Erik Fonnesbeck <efonnes@gmail.com> | 2010-11-21 04:03:29 -0700 |
---|---|---|
committer | Erik Fonnesbeck <efonnes@gmail.com> | 2010-11-21 04:03:29 -0700 |
commit | 8608438108be0c8c9523fca5cfa45291d9c6cb2f (patch) | |
tree | 7552bec0360d1efefbf6d60f0e80f41100786eae /config/shellcmd | |
parent | 178f34f25bdc617f70a584273b0f40a2d0cb4779 (diff) | |
download | pfsense-packages-8608438108be0c8c9523fca5cfa45291d9c6cb2f.tar.gz pfsense-packages-8608438108be0c8c9523fca5cfa45291d9c6cb2f.tar.bz2 pfsense-packages-8608438108be0c8c9523fca5cfa45291d9c6cb2f.zip |
Fix remaining function calls that were missed for names changed with the "unique function names" changes.
Diffstat (limited to 'config/shellcmd')
-rw-r--r-- | config/shellcmd/shellcmd_edit.tmp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/shellcmd/shellcmd_edit.tmp b/config/shellcmd/shellcmd_edit.tmp index 8c49048f..5ae466d5 100644 --- a/config/shellcmd/shellcmd_edit.tmp +++ b/config/shellcmd/shellcmd_edit.tmp @@ -50,7 +50,7 @@ if ($_GET['act'] == "del") { $a_earlyshellcmd = &$config['system']['earlyshellcmd']; unset($a_earlyshellcmd[$_GET['id']]); write_config(); - php_sync_package(); + shellcmd_sync_package(); header("Location: shellcmd.php"); exit; break; @@ -58,7 +58,7 @@ if ($_GET['act'] == "del") { $a_shellcmd = &$config['system']['shellcmd']; unset($a_shellcmd[$_GET['id']]); write_config(); - php_sync_package(); + shellcmd_sync_package(); header("Location: shellcmd.php"); exit; break; @@ -66,7 +66,7 @@ if ($_GET['act'] == "del") { // $a_afterfilterchangeshellcmd = &$config['system']['afterfilterchangeshellcmd']; // unset($a_afterfilterchangeshellcmd[$_GET['id']]); // write_config(); - // php_sync_package(); + // shellcmd_sync_package(); // header("Location: shellcmd.php"); // exit; break; @@ -166,7 +166,7 @@ if ($_POST) { } write_config(); - php_sync_package(); + shellcmd_sync_package(); } header("Location: shellcmd.php"); |