Just for the info of those who may need this feature, I made this edit for it to not import images from 2 specific forums... I am releasing this for info only, I don't recommend you make this change nor will I support it.
In ie_cron.php file I changed:
Code:
"SELECT postid, dateline, pagetext, forumid
FROM " . TABLE_PREFIX . "post join " . TABLE_PREFIX . "thread on (post.threadid = thread.threadid
WHERE iei_parsed=0
AND pagetext LIKE '%[/IMG]%'
ORDER BY postid";
to:
Code:
$SQL = "SELECT postid, " . TABLE_PREFIX . "post.dateline, pagetext, forumid
FROM " . TABLE_PREFIX . "post join " . TABLE_PREFIX . "thread on (" . TABLE_PREFIX . "post.threadid = " . TABLE_PREFIX . "thread.threadid)
WHERE iei_parsed = 0
AND pagetext LIKE '%[/IMG]%' AND forumid != 2 AND forumid != 4
ORDER BY postid";
This would import images from all forums EXCEPT forum id 2 and forum id 4 which were my off-topic and a private forum on my setup.