Plugin Directory

Changeset 419837


Ignore:
Timestamp:
08/05/2011 05:05:06 PM (15 years ago)
Author:
moyo
Message:

fixed bug with sql

Location:
wp-database-optimizer-tools/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-database-optimizer-tools/trunk/readme.txt

    r416502 r419837  
    55Requires at least: 3.1
    66Tested up to: 3.2.1
    7 Stable tag: 0.1
     7Stable tag: 0.2
    88
    99== Description ==
     
    2525    Se puede hacer un backup de la base de datos ( mas adelante pondra opcion para enviar por email el backup)
    2626
    27 
    28 
    29 
    30 Released under the terms of the GNU GPL, version 2.
    31    http://www.fsf.org/licensing/licenses/gpl.html
    32 
    33               NO WARRANTY.
    34 
    35     Copyright (c) 2011 Moyo
    3627
    3728== Installation ==
     
    7364Plugin created
    7465
     66=0.2=
     67Fixed Bugs
    7568
    7669== Screenshots ==
  • wp-database-optimizer-tools/trunk/repairDB.php

    r413851 r419837  
    11<?php
    22/*
    3 Filename:      backup.php                                                 
    4 Description:   Backup tables from the database                           
     3Filename:      repairDB.php                                                 
     4Description:   repair tables from the database                           
    55Author:        Moyo
    66Change Log:
     
    3737                $text = '<font color="red">'.__('No Tables Selected').'</font>';
    3838            }
     39           
     40           
     41           
    3942            $selected_tables = substr($tables_string, 2);
    40             $selected_tables .= '`';
     43            //$selected_tables .= '`';
     44           
     45            $selected_tables = mysql_escape_string($selected_tables);
    4146            if(!empty($selected_tables)) {
    4247                $repair2 = $wpdb->query("REPAIR TABLE $selected_tables");
  • wp-database-optimizer-tools/trunk/wp-database-optimizer-tools.php

    r418167 r419837  
    44Plugin URI: http://xtremenews.info/wordpress-plugins/wp-database-optimizer-tools/
    55Description: This plugin will help you to optimize your wordpress database.
    6 Version: 0.1
     6Version: 0.2
    77Author: Moyo
    88Author URI: http://xtremenews.info
Note: See TracChangeset for help on using the changeset viewer.