aboutsummaryrefslogtreecommitdiffstats
path: root/config/filemgr
diff options
context:
space:
mode:
authorTom Schaefer <tom@tomschaefer.org>2010-08-19 23:43:05 -0400
committerTom Schaefer <tom@tomschaefer.org>2010-08-19 23:43:05 -0400
commit5b7a4d91df381025d79f51db2edd5fd8d89ff17a (patch)
tree4a71ca9fdcc58d8c4c882774b746a361cd555e0c /config/filemgr
parent1c722d02a740a1a252ab90200d83c1942d9e76d3 (diff)
downloadpfsense-packages-5b7a4d91df381025d79f51db2edd5fd8d89ff17a.tar.gz
pfsense-packages-5b7a4d91df381025d79f51db2edd5fd8d89ff17a.tar.bz2
pfsense-packages-5b7a4d91df381025d79f51db2edd5fd8d89ff17a.zip
filemgr renamed php install function name. Version bump.
Diffstat (limited to 'config/filemgr')
-rw-r--r--config/filemgr/filemgr.inc6
-rw-r--r--config/filemgr/filemgr.xml10
2 files changed, 8 insertions, 8 deletions
diff --git a/config/filemgr/filemgr.inc b/config/filemgr/filemgr.inc
index 9e8539ba..56d34a60 100644
--- a/config/filemgr/filemgr.inc
+++ b/config/filemgr/filemgr.inc
@@ -24,13 +24,13 @@
-function php_sync_package()
+function php_sync_package_fm()
{
global $config;
}
-function php_install_command()
+function php_install_command_fm()
{
global $config;
@@ -136,7 +136,7 @@ function php_install_command()
}
-function deinstall_command()
+function deinstall_command_fm()
{
conf_mount_rw();
$handle = popen("/usr/local/etc/rc.d/filemgr.sh stop", "r");
diff --git a/config/filemgr/filemgr.xml b/config/filemgr/filemgr.xml
index 0082fc29..ec95a3c8 100644
--- a/config/filemgr/filemgr.xml
+++ b/config/filemgr/filemgr.xml
@@ -31,7 +31,7 @@
<requirements>none</requirements>
<faq>http://forum.pfsense.org/index.php/topic,26974.0.html</faq>
<name>File Manager</name>
- <version>0.1.0</version>
+ <version>0.1.1</version>
<title>Settings</title>
<include_file>/usr/local/pkg/filemgr.inc</include_file>
<menu>
@@ -226,15 +226,15 @@
<custom_add_php_command>
</custom_add_php_command>
<custom_php_resync_config_command>
- php_sync_package();
+ php_sync_package_fm();
</custom_php_resync_config_command>
<custom_delete_php_command>
- php_sync_package();
+ php_sync_package_fm();
</custom_delete_php_command>
<custom_php_install_command>
- php_install_command();
+ php_install_command_fm();
</custom_php_install_command>
<custom_php_deinstall_command>
- deinstall_command();
+ deinstall_command_fm();
</custom_php_deinstall_command>
</packagegui> \ No newline at end of file