Changeset 3379404
- Timestamp:
- 10/16/2025 11:21:32 AM (2 months ago)
- Location:
- theme-editor/trunk
- Files:
-
- 3 edited
-
app/controller/theme_controller.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
theme_editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
theme-editor/trunk/app/controller/theme_controller.php
r2472384 r3379404 84 84 } 85 85 $real_file = $current_theme_root . basename( $file ); 86 87 if ( isset( $_POST['new-content'] ) && file_exists( $real_file ) && is_writable( $real_file ) ) { 88 $new_content = stripslashes( $_POST['new-content'] ); 89 if ( file_get_contents( $real_file ) === $new_content ) { 90 } 91 else { 92 $f = fopen( $real_file, 'w+' ); 93 fwrite( $f, $new_content ); 94 fclose( $f ); 95 } 96 } 97 86 98 87 $content = file_get_contents( $real_file ); 99 88 -
theme-editor/trunk/readme.txt
r3310939 r3379404 3 3 Tags: file, editor, plugin, wp, wordpress, theme, theme editor, code editor, Preview Theme, create New Theme, Preview, Duplicate Theme 4 4 Requires at least: 3.4 5 Tested up to: 6.8. 15 Tested up to: 6.8.3 6 6 Requires PHP: 5.2.4 7 Stable tag: 3. 07 Stable tag: 3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 91 91 92 92 == Changelog == 93 94 = 3.1 (15th Oct, 2025) 95 96 * Security Fixes 93 97 94 98 = 3.0 (10th Jun, 2025) -
theme-editor/trunk/theme_editor.php
r3310911 r3379404 2 2 /* 3 3 Plugin Name: Theme Editor 4 Plugin URI: https:// wordpress.org/plugins/theme-editor4 Plugin URI: https://themeeditor.pro 5 5 Description: create, edit, upload, download, delete Theme Files and folders 6 6 Author: mndpsingh287 7 Version: 3. 07 Version: 3.1 8 8 Author URI: https://profiles.wordpress.org/mndpsingh287 9 9 Text Domain: theme-editor
Note: See TracChangeset
for help on using the changeset viewer.