Skip to content

Commit

Permalink
Merge branch 'QA_4_6'
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Dec 14, 2016
2 parents beea41f + eec9d3f commit 06d13fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/DatabaseInterface.php
Expand Up @@ -2646,7 +2646,8 @@ public function getFieldsMeta($result)
* match existing strings
*/
foreach ($result as $value) {
if (strlen($value->orgtable) !== 0 && mb_strtolower($value->orgtable) == mb_strtolower($value->table)) {
if (strlen($value->orgtable) !== 0 &&
mb_strtolower($value->orgtable) === mb_strtolower($value->table)) {
$value->orgtable = $value->table;
}
}
Expand Down

0 comments on commit 06d13fc

Please sign in to comment.