Skip to content

Commit

Permalink
Update class_backup_SQL.php
Browse files Browse the repository at this point in the history
bug_tables
  • Loading branch information
Chak10 committed May 29, 2017
1 parent 7cbec4c commit de58703
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/class_backup_SQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ private function check($in, $t) {

case "tables":
if (is_array($in))
return true;
return $this->table_name = $in;
if (is_string($in) && $in != "*" && $in != "")
return $this->table_name = explode(",", $in);
return $this->table_name = $this->query_table($this->con, $this->type);
Expand Down Expand Up @@ -942,4 +942,4 @@ private function debug() {
}


?>
?>

0 comments on commit de58703

Please sign in to comment.