Changeset 2474884
- Timestamp:
- 02/15/2021 01:46:37 PM (5 years ago)
- Location:
- simple-database-repair/tags/2.1/trunk
- Files:
-
- 2 edited
- 1 copied
-
. (copied) (copied from simple-database-repair/tags/2.1/trunk) (1 prop)
-
readme.txt (modified) (2 diffs)
-
simple-database-repair.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-database-repair/tags/2.1/trunk
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
/simple-database-repair/trunk merged eligible /simple-database-repair/tags/2.0/trunk 2355008-2355010
-
Property
svn:mergeinfo
set to
(toggle deleted branches)
-
simple-database-repair/tags/2.1/trunk/readme.txt
r2390892 r2474884 3 3 Tags: Database Repair,Fix database error, corrupt table fix . 4 4 Requires at least: 5.2.2 5 Tested up to: 5. 55 Tested up to: 5.6 6 6 Stable tag: 2.1 7 7 Requires PHP: 5.6 or higher … … 10 10 11 11 == Description == 12 12 13 Repair table fixes any corrupted table . 13 If you need to repair your database then install this plugin.This plugin is very easy to use and that is why it is named "Simple Database Repair" . We advice you to back up the database before applying the changes .14 If you need to repair your database then install this plugin.This plugin is very easy to use and that is why it is named "Simple Database Repair" . 14 15 15 16 == Installation == -
simple-database-repair/tags/2.1/trunk/simple-database-repair.php
r2390893 r2474884 25 25 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 26 26 */ 27 27 global $current_user; 28 28 add_action('admin_menu', 'SDR_add_option'); 29 include_once(ABSPATH . 'wp-includes/pluggable.php');30 29 31 30 // Add style Function … … 108 107 echo '<p style="color: red;"><strong>'.__('ERROR','simple-database-repair').' - '.__('Please select a table to repair!.','simple-database-repair').'</strong></p>'; 109 108 } 110 ?> 111 <script type="text/javascript"> 112 window.location.href = '<?php echo $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']; ?>'; 113 </script> 114 <?php 109 110 $url = $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING']; 111 wp_redirect( $url ); 112 exit; 115 113 } 116 114 ?>
Note: See TracChangeset
for help on using the changeset viewer.