Changeset 1563664
- Timestamp:
- 12/28/2016 07:12:46 PM (9 years ago)
- Location:
- search-and-replace/trunk/inc
- Files:
-
- 7 edited
-
Page/Manager.php (modified) (2 diffs)
-
Page/SearchReplace.php (modified) (2 diffs)
-
templates/credits.php (modified) (1 diff)
-
templates/db_backup.php (modified) (1 diff)
-
templates/replace_domain.php (modified) (2 diffs)
-
templates/search_replace.php (modified) (1 diff)
-
templates/sql_import.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
search-and-replace/trunk/inc/Page/Manager.php
r1390032 r1563664 140 140 $suffix = $this->get_script_suffix(); 141 141 142 $url = ( INSR_DIR . '/assets/css/inpsyde-search-replace' . $suffix . '.css' );142 $url = ( SEARCH_REPLACE_BASEDIR . '/assets/css/inpsyde-search-replace' . $suffix . '.css' ); 143 143 $handle = 'insr-styles'; 144 144 wp_register_script( $handle, $url ); … … 160 160 $suffix = $this->get_script_suffix(); 161 161 162 $url = ( INSR_DIR . '/assets/js/inpsyde-search-replace' . $suffix . '.js' );162 $url = ( SEARCH_REPLACE_BASEDIR . '/assets/js/inpsyde-search-replace' . $suffix . '.js' ); 163 163 $handle = 'insr-js'; 164 164 wp_register_script( $handle, $url ); -
search-and-replace/trunk/inc/Page/SearchReplace.php
r1390214 r1563664 122 122 //check for errors in form 123 123 if ( ! $this->is_request_valid() ) { 124 125 $this->display_errors(); 126 124 127 return FALSE; 125 128 } … … 254 257 } 255 258 259 260 256 261 return TRUE; 257 262 } -
search-and-replace/trunk/inc/templates/credits.php
r1390032 r1563664 4 4 */ 5 5 // Prevent direct access. 6 if ( ! defined( ' INSR_DIR' ) ) {6 if ( ! defined( 'SEARCH_REPLACE_BASEDIR' ) ) { 7 7 echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; 8 8 exit; -
search-and-replace/trunk/inc/templates/db_backup.php
r1390032 r1563664 4 4 */ 5 5 // Prevent direct access. 6 if ( ! defined( ' INSR_DIR' ) ) {6 if ( ! defined( 'SEARCH_REPLACE_BASEDIR' ) ) { 7 7 echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; 8 8 exit; -
search-and-replace/trunk/inc/templates/replace_domain.php
r1390032 r1563664 4 4 */ 5 5 // Prevent direct access. 6 if ( ! defined( ' INSR_DIR' ) ) {6 if ( ! defined( 'SEARCH_REPLACE_BASEDIR' ) ) { 7 7 echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; 8 8 exit; … … 19 19 <tr> 20 20 <th><label for="search"><strong><?php esc_html_e( 'Search for: ', 'search-and-replace' ); ?></strong></label></th> 21 <td><input id="search" type="text" name="search" value="<?php echo get_site_url(); ?>" /></td>21 <td><input id="search" type="text" disabled="disabled" name="search" value="<?php echo get_site_url(); ?>" /></td> 22 22 </tr> 23 23 <tr> -
search-and-replace/trunk/inc/templates/search_replace.php
r1390032 r1563664 4 4 */ 5 5 // Prevent direct access. 6 if ( ! defined( ' INSR_DIR' ) ) {6 if ( ! defined( 'SEARCH_REPLACE_BASEDIR' ) ) { 7 7 echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; 8 8 exit; -
search-and-replace/trunk/inc/templates/sql_import.php
r1390032 r1563664 4 4 */ 5 5 // Prevent direct access. 6 if ( ! defined( ' INSR_DIR' ) ) {6 if ( ! defined( 'SEARCH_REPLACE_BASEDIR' ) ) { 7 7 echo "Hi there! I'm just a part of plugin, not much I can do when called directly."; 8 8 exit;
Note: See TracChangeset
for help on using the changeset viewer.