Changeset 378330
- Timestamp:
- 04/28/2011 10:40:16 AM (15 years ago)
- Location:
- wp-htaccess-editor
- Files:
-
- 27 added
- 4 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/lang (added)
-
tags/1.1.1/lang/cs_CZ.mo (added)
-
tags/1.1.1/lang/cs_CZ.po (added)
-
tags/1.1.1/lang/default.po (added)
-
tags/1.1.1/lib (added)
-
tags/1.1.1/lib/lib.ad.php (added)
-
tags/1.1.1/lib/lib.debug.php (added)
-
tags/1.1.1/lib/lib.functions.php (added)
-
tags/1.1.1/lib/lib.pages.php (added)
-
tags/1.1.1/lib/lib.wp-files.php (added)
-
tags/1.1.1/pages (added)
-
tags/1.1.1/pages/wphe-backup.php (added)
-
tags/1.1.1/pages/wphe-dashboard.php (added)
-
tags/1.1.1/readme.txt (added)
-
tags/1.1.1/screenshot-1.png (added)
-
tags/1.1.1/screenshot-2.png (added)
-
tags/1.1.1/screenshot-3.png (added)
-
tags/1.1.1/style (added)
-
tags/1.1.1/style/img (added)
-
tags/1.1.1/style/img/1.gif (added)
-
tags/1.1.1/style/img/2.gif (added)
-
tags/1.1.1/style/img/3.gif (added)
-
tags/1.1.1/style/img/flag-cz.jpg (added)
-
tags/1.1.1/style/img/flag-en.jpg (added)
-
tags/1.1.1/style/wphe-style.css (added)
-
tags/1.1.1/wp-htaccess-editor.php (added)
-
trunk/lib/lib.functions.php (modified) (5 diffs)
-
trunk/pages/wphe-dashboard.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-htaccess-editor.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-htaccess-editor/trunk/lib/lib.functions.php
r372903 r378330 16 16 $htaccess_content_orig = str_replace('\\\\', '\\', $htaccess_content_orig); 17 17 $htaccess_content_orig = str_replace('\"', '"', $htaccess_content_orig); 18 @chmod($WPHE_backup_path, 0666); 18 19 $WPHE_success = file_put_contents($WPHE_backup_path, $htaccess_content_orig, LOCK_EX); 19 20 if($WPHE_success === false) … … 31 32 return true; 32 33 } 34 @chmod($WPHE_backup_path, 0644); 33 35 }else{ 34 36 unset($WPHE_backup_path); … … 43 45 $htaccess_content_orig = str_replace('\\\\', '\\', $htaccess_content_orig); 44 46 $htaccess_content_orig = str_replace('\"', '"', $htaccess_content_orig); 47 @chmod($WPHE_backup_path, 0666); 45 48 $WPHE_success = file_put_contents($WPHE_backup_path, $htaccess_content_orig, LOCK_EX); 46 49 if($WPHE_success === false) … … 58 61 return true; 59 62 } 63 @chmod($WPHE_backup_path, 0644); 60 64 }else{ 61 65 unset($WPHE_backup_path); … … 152 156 $WPHE_new_content = str_replace('\"', '"', $WPHE_new_content); 153 157 $WPHE_write_success = file_put_contents($WPHE_orig_path, $WPHE_new_content, LOCK_EX); 154 155 158 if(!file_exists($WPHE_orig_path) && $WPHE_write_success === false) 156 159 { -
wp-htaccess-editor/trunk/pages/wphe-dashboard.php
r372903 r378330 93 93 $success = true; 94 94 } 95 @chmod($WPHE_orig_path, 0640);96 95 } 97 96 } -
wp-htaccess-editor/trunk/readme.txt
r372903 r378330 4 4 Tags: simply,htaccess,editor 5 5 Requires at least: 3.0 6 Tested up to: 3.1. 17 Stable tag: 1.1. 06 Tested up to: 3.1.2 7 Stable tag: 1.1.1 8 8 9 9 Simple editor htaccess file without using FTP client. … … 36 36 == Changelog == 37 37 38 = 1.1.1 = 39 * Fixed CHMOD 40 38 41 = 1.1.0 = 39 42 * Adding Czech and English language -
wp-htaccess-editor/trunk/wp-htaccess-editor.php
r372903 r378330 4 4 Plugin URI: http://www.wp-blog.cz/101-plugin-wp-htaccess-editor/ 5 5 Description: Simple editor htaccess file without using FTP client. 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: Lukenzi 8 8 Author URI: http://www.wp-blog.cz/ … … 32 32 return; 33 33 }else{ 34 $WPHE_version = '1.1. 0';34 $WPHE_version = '1.1.1'; 35 35 $WPHE_mem_start = memory_get_usage(); 36 36
Note: See TracChangeset
for help on using the changeset viewer.