aboutsummaryrefslogtreecommitdiffstats
path: root/packages/freenas/www/disks_mount_tools.php
diff options
context:
space:
mode:
authorDaniel Stefan Haischt <dsh@pfsense.org>2007-01-05 07:20:22 +0000
committerDaniel Stefan Haischt <dsh@pfsense.org>2007-01-05 07:20:22 +0000
commit0186d996c21f1e24d40194fcb48bf12b89d579fd (patch)
treeed8ee8ce73640dc99a690b63af970746eb89fa59 /packages/freenas/www/disks_mount_tools.php
parent55b6ad84bb898c20f30cdf5d4c94c04cb21ebd22 (diff)
downloadpfsense-packages-0186d996c21f1e24d40194fcb48bf12b89d579fd.tar.gz
pfsense-packages-0186d996c21f1e24d40194fcb48bf12b89d579fd.tar.bz2
pfsense-packages-0186d996c21f1e24d40194fcb48bf12b89d579fd.zip
* fix: usorting disks in freenas_guiconfig.inc
Diffstat (limited to 'packages/freenas/www/disks_mount_tools.php')
-rw-r--r--packages/freenas/www/disks_mount_tools.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/freenas/www/disks_mount_tools.php b/packages/freenas/www/disks_mount_tools.php
index 6c3710d5..abd31b62 100644
--- a/packages/freenas/www/disks_mount_tools.php
+++ b/packages/freenas/www/disks_mount_tools.php
@@ -120,7 +120,7 @@ echo $pfSenseHead->getHTML();
<?php if ($input_errors) print_input_errors($input_errors); ?>
<?php if ($savemsg) print_info_box($savemsg); ?>
-<form id="iform" name="iform" action="disks_mount.php" method="post">
+<form id="iform" name="iform" action="disks_mount_tools.php" method="post">
<div id="inputerrors"></div>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
@@ -181,11 +181,11 @@ echo $pfSenseHead->getHTML();
switch($action)
{
case "mount":
- echo(gettext("Mounting...") . "<br />");
+ echo(gettext("Mounting '{$fullname}'...") . "<br />");
$result = disks_mount_fullname($fullname);
break;
case "umount":
- echo(gettext("Umounting...") . "<br />");
+ echo(gettext("Umounting '{$fullname}'...") . "<br />");
$result = disks_umount_fullname($fullname);
break;
}