Changeset 1052632
- Timestamp:
- 12/23/2014 02:15:48 PM (11 years ago)
- Location:
- solid-code-theme-editor
- Files:
-
- 48 added
- 4 edited
-
tags/1.0.9 (added)
-
tags/1.0.9/ace (added)
-
tags/1.0.9/ace/LICENSE (added)
-
tags/1.0.9/ace/ace.js (added)
-
tags/1.0.9/ace/ext-beautify.js (added)
-
tags/1.0.9/ace/ext-chromevox.js (added)
-
tags/1.0.9/ace/ext-elastic_tabstops_lite.js (added)
-
tags/1.0.9/ace/ext-emmet.js (added)
-
tags/1.0.9/ace/ext-error_marker.js (added)
-
tags/1.0.9/ace/ext-keybinding_menu.js (added)
-
tags/1.0.9/ace/ext-language_tools.js (added)
-
tags/1.0.9/ace/ext-linking.js (added)
-
tags/1.0.9/ace/ext-modelist.js (added)
-
tags/1.0.9/ace/ext-old_ie.js (added)
-
tags/1.0.9/ace/ext-searchbox.js (added)
-
tags/1.0.9/ace/ext-settings_menu.js (added)
-
tags/1.0.9/ace/ext-spellcheck.js (added)
-
tags/1.0.9/ace/ext-split.js (added)
-
tags/1.0.9/ace/ext-static_highlight.js (added)
-
tags/1.0.9/ace/ext-statusbar.js (added)
-
tags/1.0.9/ace/ext-textarea.js (added)
-
tags/1.0.9/ace/ext-themelist.js (added)
-
tags/1.0.9/ace/ext-whitespace.js (added)
-
tags/1.0.9/ace/keybinding-emacs.js (added)
-
tags/1.0.9/ace/keybinding-vim.js (added)
-
tags/1.0.9/ace/mode-css.js (added)
-
tags/1.0.9/ace/mode-html.js (added)
-
tags/1.0.9/ace/mode-javascript.js (added)
-
tags/1.0.9/ace/mode-mysql.js (added)
-
tags/1.0.9/ace/mode-php.js (added)
-
tags/1.0.9/ace/mode-sql.js (added)
-
tags/1.0.9/ace/mode-text.js (added)
-
tags/1.0.9/ace/mode-xml.js (added)
-
tags/1.0.9/ace/theme-chrome.js (added)
-
tags/1.0.9/ace/worker-css.js (added)
-
tags/1.0.9/ace/worker-html.js (added)
-
tags/1.0.9/ace/worker-javascript.js (added)
-
tags/1.0.9/ace/worker-json.js (added)
-
tags/1.0.9/ace/worker-php.js (added)
-
tags/1.0.9/ace/worker-xquery.js (added)
-
tags/1.0.9/readme.txt (added)
-
tags/1.0.9/sc-theme-backup.php (added)
-
tags/1.0.9/sc-theme-downloader.php (added)
-
tags/1.0.9/sc-theme-editor.php (added)
-
tags/1.0.9/screenshot-1.jpg (added)
-
tags/1.0.9/scte-script.js (added)
-
tags/1.0.9/scte-style.css (added)
-
tags/1.0.9/tempZips (added)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/sc-theme-backup.php (modified) (1 diff)
-
trunk/sc-theme-downloader.php (modified) (1 diff)
-
trunk/sc-theme-editor.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
solid-code-theme-editor/trunk/readme.txt
r1038740 r1052632 71 71 * fixed editor (scroll was not working on editor) and also added 100% width on editor style for large screens 72 72 73 = 1.0.9 = 74 * some more fixes 75 73 76 == Upgrade Notice == 74 77 75 fixed editor (scroll was not working on editor) and also added 100% width on editor style for large screens78 some more fixes -
solid-code-theme-editor/trunk/sc-theme-backup.php
r689595 r1052632 1 1 <?php 2 2 header('HTTP/1.1 200 OK'); 3 4 if ( ! defined( 'ABSPATH' ) ) { 5 exit('no access'); // disable direct access 6 } 7 3 8 if ( !current_user_can('edit_themes') ) 4 9 wp_die('<p>'.__('You do not have sufficient permissions to edit templates for this site.').'</p>'); -
solid-code-theme-editor/trunk/sc-theme-downloader.php
r689595 r1052632 1 1 <?php 2 2 header('HTTP/1.1 200 OK'); 3 4 if ( ! defined( 'ABSPATH' ) ) { 5 exit('no access'); // disable direct access 6 } 7 3 8 if ( !current_user_can('edit_themes') ) 4 9 wp_die('<p>'.__('You do not have sufficient permissions to edit templates for this site.').'</p>'); -
solid-code-theme-editor/trunk/sc-theme-editor.php
r1038740 r1052632 4 4 Plugin URI: http://solid-code.co.uk/2011/08/solid-code-theme-editor/ 5 5 Description: Adds a special editor to the theme editor with more functionality 6 Version: 1.0. 86 Version: 1.0.9 7 7 Author: Dagan Lev 8 8 Author URI: http://solid-code.co.uk … … 23 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 26 if ( ! defined( 'ABSPATH' ) ) { 27 exit('no access'); // disable direct access 28 } 25 29 26 30 //add actions … … 94 98 $file = str_ireplace("../","",$_GET['file']); 95 99 } 96 100 97 101 //delete file 98 102 if(isset($_GET['delfile'])){
Note: See TracChangeset
for help on using the changeset viewer.