Skip to content

Commit

Permalink
Merge pull request #24 from richard67/patch-1
Browse files Browse the repository at this point in the history
Correct my syntax error from before
  • Loading branch information
wilsonge committed Mar 5, 2016
2 parents af643f5 + 8cc9533 commit b476cc7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions administrator/components/com_admin/script.php
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,8 @@ private function convertTablesToUtf8mb4()

// Check conversion status in database
$db->setQuery('SELECT ' . $db->quoteName('converted')
. ' FROM ' . $db->quoteName('#__utf8_conversion');
. ' FROM ' . $db->quoteName('#__utf8_conversion')
);

try
{
Expand All @@ -1714,7 +1715,7 @@ private function convertTablesToUtf8mb4()
}

// Nothing to do, saved conversion status from DB is equal to required
if ($convertedDB === $converted)
if ($convertedDB == $converted)
{
return;
}
Expand Down

0 comments on commit b476cc7

Please sign in to comment.