Skip to content

Commit

Permalink
Repack
Browse files Browse the repository at this point in the history
  • Loading branch information
iMattPro committed Dec 31, 2016
1 parent df728ae commit ce3aa01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/release_1_4_0_data.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function convert_similar_topic_forums()
$forum_ids = json_encode($forum_ids, JSON_NUMERIC_CHECK);

$sql = 'UPDATE ' . FORUMS_TABLE . "
SET similar_topic_forums = '{$forum_ids}'
SET similar_topic_forums = '" . $this->db->sql_escape($forum_ids) . "'
WHERE forum_id = " . (int) $row['forum_id'];
$this->db->sql_query($sql);
}
Expand Down

0 comments on commit ce3aa01

Please sign in to comment.