diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 11:26:20 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 11:26:20 -0500 |
commit | 76ead734626996f82caddaca57dc2f84243b0947 (patch) | |
tree | 32ea6607a7c70de059b4bf376897b64391af2321 /shell/bin/editor.php | |
parent | fb0380f48203a11584773f3db335eaadd9cc6fdf (diff) |
This zip file was identified as ltshell-3.6.zip
Diffstat (limited to 'shell/bin/editor.php')
-rw-r--r-- | shell/bin/editor.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shell/bin/editor.php b/shell/bin/editor.php index 39db3d8..a136cd2 100644 --- a/shell/bin/editor.php +++ b/shell/bin/editor.php @@ -2,7 +2,8 @@ class p_editor extends prog { public static function main($args, $env) { if (isset($_POST['stdin'])) { - if (isset($args[1])) { + if (false) {//if (isset($args[1])) { + echo $args[0].': saving to `'.$args[1]."'\n"; file_put_contents($args[1],$_POST['stdin']); } else { echo $_POST['stdin']; @@ -14,8 +15,8 @@ class p_editor extends prog { $text = ''; } echo '<div class="editor">'; - echo '<input type="hidden" name="stddest" value="'.$_POST['c'].'" />'; - echo '<textarea name="stdin">'.$text.'</textarea>'."\n"; + echo '<input type="hidden" name="stdout_dest" value="'.$_POST['c'].'" />'; + echo '<textarea name="stdin">'.htmlentities($text).'</textarea>'."\n"; echo '<input type="submit" value="save" />'; echo '</div>'; } |