Skip to content

Commit

Permalink
Merge pull request #59 from JohnFLewis/master
Browse files Browse the repository at this point in the history
Correcting spelling.
  • Loading branch information
franzliedke committed Nov 20, 2012
2 parents 250e47d + 9f9c5f3 commit 8f220b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/dblayer/mysql.php
Expand Up @@ -303,7 +303,7 @@ function drop_table($table_name, $no_prefix = false)

function rename_table($old_table, $new_table, $no_prefix = false)
{
// If there new table exists and the old one doesn't, then we're happy
// If the new table exists and the old one doesn't, then we're happy
if ($this->table_exists($new_table, $no_prefix) && !$this->table_exists($old_table, $no_prefix))
return true;

Expand Down
2 changes: 1 addition & 1 deletion include/dblayer/mysql_innodb.php
Expand Up @@ -317,7 +317,7 @@ function drop_table($table_name, $no_prefix = false)

function rename_table($old_table, $new_table, $no_prefix = false)
{
// If there new table exists and the old one doesn't, then we're happy
// If the new table exists and the old one doesn't, then we're happy
if ($this->table_exists($new_table, $no_prefix) && !$this->table_exists($old_table, $no_prefix))
return true;

Expand Down
2 changes: 1 addition & 1 deletion include/dblayer/mysqli_innodb.php
Expand Up @@ -323,7 +323,7 @@ function drop_table($table_name, $no_prefix = false)

function rename_table($old_table, $new_table, $no_prefix = false)
{
// If there new table exists and the old one doesn't, then we're happy
// If the new table exists and the old one doesn't, then we're happy
if ($this->table_exists($new_table, $no_prefix) && !$this->table_exists($old_table, $no_prefix))
return true;

Expand Down

0 comments on commit 8f220b6

Please sign in to comment.