Plugin Directory

Changeset 1052632


Ignore:
Timestamp:
12/23/2014 02:15:48 PM (11 years ago)
Author:
DaganLev
Message:

some more fixes

Location:
solid-code-theme-editor
Files:
48 added
4 edited

Legend:

Unmodified
Added
Removed
  • solid-code-theme-editor/trunk/readme.txt

    r1038740 r1052632  
    7171* fixed editor (scroll was not working on editor) and also added 100% width on editor style for large screens
    7272
     73= 1.0.9 =
     74* some more fixes
     75
    7376== Upgrade Notice ==
    7477
    75 fixed editor (scroll was not working on editor) and also added 100% width on editor style for large screens
     78some more fixes
  • solid-code-theme-editor/trunk/sc-theme-backup.php

    r689595 r1052632  
    11<?php
    22header('HTTP/1.1 200 OK');
     3
     4if ( ! defined( 'ABSPATH' ) ) {
     5    exit('no access'); // disable direct access
     6}
     7
    38if ( !current_user_can('edit_themes') )
    49        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  
    11<?php
    22header('HTTP/1.1 200 OK');
     3
     4if ( ! defined( 'ABSPATH' ) ) {
     5    exit('no access'); // disable direct access
     6}
     7
    38if ( !current_user_can('edit_themes') )
    49        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  
    44Plugin URI: http://solid-code.co.uk/2011/08/solid-code-theme-editor/
    55Description: Adds a special editor to the theme editor with more functionality
    6 Version: 1.0.8
     6Version: 1.0.9
    77Author: Dagan Lev
    88Author URI: http://solid-code.co.uk
     
    2323Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    2424*/
     25
     26if ( ! defined( 'ABSPATH' ) ) {
     27    exit('no access'); // disable direct access
     28}
    2529
    2630//add actions
     
    9498        $file = str_ireplace("../","",$_GET['file']);
    9599    }
    96    
     100
    97101    //delete file
    98102    if(isset($_GET['delfile'])){
Note: See TracChangeset for help on using the changeset viewer.