Skip to content

Commit

Permalink
No space found after comma in function call
Browse files Browse the repository at this point in the history
No space found after comma in function call
  • Loading branch information
alikon committed Oct 15, 2016
1 parent 2716513 commit fe8a684
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public static function removeOrphanNodes()

$subquery1->select($db->quoteName('t.id'))
->from($db->quoteName('#__finder_taxonomy', 't'))
->join('LEFT',$db->quoteName('#__finder_taxonomy_map', 'm') . ' ON ' . $db->quoteName('m.node_id') . '=' . $db->quoteName('t.id'))
->join('LEFT', $db->quoteName('#__finder_taxonomy_map', 'm') . ' ON ' . $db->quoteName('m.node_id') . '=' . $db->quoteName('t.id'))
->where($db->quoteName('t.parent_id') . ' > 1 ')
->where($db->quoteName('m.link_id') . ' IS NULL');

Expand Down

0 comments on commit fe8a684

Please sign in to comment.