Fix typos

This commit is contained in:
Miroslav Michalicka 2017-01-08 10:16:32 +01:00
parent bde42e397c
commit a313ddf8e3
1 changed files with 2 additions and 2 deletions

View File

@ -70,8 +70,8 @@ class ImportScripts::Drupal < ImportScripts::Base
n.created created,
n.sticky sticky,
nr.body body
FROM node n,
LEFT JOIN node_revision nr ON nr.vid=n.vid
FROM node n
LEFT JOIN node_revisions nr ON nr.vid=n.vid
WHERE n.type = 'blog'
AND n.status = 1
", cache_rows: false)