From c52087add53abbb36eb3a080dedfeb8813ed70cf Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 23 Jun 2005 22:27:13 +0000 Subject: * Use new style messages only * Automatically mount image rw before saving --- usr/local/www/edit.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'usr/local/www') diff --git a/usr/local/www/edit.php b/usr/local/www/edit.php index 02273c7..ae8e073 100755 --- a/usr/local/www/edit.php +++ b/usr/local/www/edit.php @@ -37,17 +37,18 @@ if (($_POST['submit'] == "Load") && file_exists($_POST['savetopath'])) { $content = fread($fd, filesize($_POST['savetopath'])); fclose($fd); $edit_area=""; - $ulmsg = "Loaded text from " . $_POST['savetopath']; + $savemsg = "Loaded text from " . $_POST['savetopath']; } else if (($_POST['submit'] == "Save")) { + conf_mount_rw(); $content = ereg_replace("\r","",$_POST['content']) ; $fd = fopen($_POST['savetopath'], "w"); fwrite($fd, $content); fclose($fd); $edit_area=""; - $ulmsg = "Saved text to " . $_POST['savetopath']; $savemsg = "Saved text to " . $_POST['savetopath']; + conf_mount_ro(); } else if (($_POST['submit'] == "Load") && !file_exists($_POST['savetopath'])) { - $ulmsg = "File not found " . $_POST['savetopath']; + $savemsg = "File not found " . $_POST['savetopath']; $content = ""; $_POST['savetopath'] = ""; } @@ -140,7 +141,6 @@ function sf() { document.forms[0].savetopath.focus(); }

-" . $ulmsg . "

\n"; ?>
-- cgit v1.1