Revision 1069
Added by Matthias over 16 years ago
| edit_module_files.php | ||
|---|---|---|
| 125 | 125 |
// output content of module file to textareas |
| 126 | 126 |
?> |
| 127 | 127 |
<form name="edit_module_file" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post" style="margin: 0;"> |
| 128 |
<input type="hidden" name="page_id" value="<?php echo $page_id; ?>"> |
|
| 129 |
<input type="hidden" name="section_id" value="<?php echo $section_id; ?>"> |
|
| 130 |
<input type="hidden" name="mod_dir" value="<?php echo $mod_dir; ?>"> |
|
| 128 |
<input type="hidden" name="page_id" value="<?php echo $page_id; ?>" />
|
|
| 129 |
<input type="hidden" name="section_id" value="<?php echo $section_id; ?>" />
|
|
| 130 |
<input type="hidden" name="mod_dir" value="<?php echo $mod_dir; ?>" />
|
|
| 131 | 131 |
<input type="hidden" name="edit_file" value="<?php echo $css_file; ?>" /> |
| 132 |
<input type="hidden" name="action" value="save"> |
|
| 132 |
<input type="hidden" name="action" value="save" />
|
|
| 133 | 133 |
<textarea id="code_area" name="css_data" cols="115" rows="25" wrap="VIRTUAL" style="margin:2px;"><?php |
| 134 | 134 |
echo htmlspecialchars($css_content); ?> |
| 135 | 135 |
</textarea> |
Also available in: Unified diff
Fixed some validiation bugs in core and different modules (Thanks to luisehahne)