diff options
author | jim-p <jimp@pfsense.org> | 2010-11-09 15:18:22 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2010-11-09 15:18:22 -0500 |
commit | efdc60cf0499560145043f11a8977b7e743d1e6f (patch) | |
tree | a70619cbdfcad6bf29eae87e6fa7b5cb06e42542 /config | |
parent | 99477c441e2b7b433b5d825f48181127a0ba964f (diff) | |
download | pfsense-packages-efdc60cf0499560145043f11a8977b7e743d1e6f.tar.gz pfsense-packages-efdc60cf0499560145043f11a8977b7e743d1e6f.tar.bz2 pfsense-packages-efdc60cf0499560145043f11a8977b7e743d1e6f.zip |
Unique function names.
Diffstat (limited to 'config')
-rw-r--r-- | config/notes/notes.inc | 8 | ||||
-rw-r--r-- | config/notes/notes.xml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/config/notes/notes.inc b/config/notes/notes.inc index 64d8bfd5..f4bfe2cc 100644 --- a/config/notes/notes.inc +++ b/config/notes/notes.inc @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. */ -function php_sync_package() +function notes_sync_package() { //global $config; @@ -39,7 +39,7 @@ function php_sync_package() } -function php_install_command() +function notes_install_command() { global $config; @@ -71,7 +71,7 @@ function php_install_command() //); - php_sync_package(); + notes_sync_package(); //if (pkg_is_service_running('notes')) { @@ -84,7 +84,7 @@ function php_install_command() } -function deinstall_command() +function notes_deinstall_command() { conf_mount_rw(); diff --git a/config/notes/notes.xml b/config/notes/notes.xml index 5d2bdf91..ae623493 100644 --- a/config/notes/notes.xml +++ b/config/notes/notes.xml @@ -101,15 +101,15 @@ <custom_add_php_command> </custom_add_php_command> <custom_php_resync_config_command> - php_sync_package(); + notes_sync_package(); </custom_php_resync_config_command> <custom_delete_php_command> - php_sync_package(); + notes_sync_package(); </custom_delete_php_command> <custom_php_install_command> - php_install_command(); + notes_install_command(); </custom_php_install_command> <custom_php_deinstall_command> - deinstall_command(); + notes_deinstall_command(); </custom_php_deinstall_command> </packagegui>
\ No newline at end of file |