Skip to content

Commit

Permalink
[*] Fixes the URLK param forum filter
Browse files Browse the repository at this point in the history
  • Loading branch information
blogpig committed Jun 29, 2011
1 parent a374f91 commit 081615c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion import.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@

$forum_ids = array();
if(($uservoice_forums && $uservoice_forums != 'none') || (defined('USERVOICE_IMPORT_FORUMS') && USERVOICE_IMPORT_FORUMS && USERVOICE_IMPORT_FORUMS != 'none')) {
if($uservoice_forums != 'all') {
if($uservoice_forums && $uservoice_forums != 'none' && $uservoice_forums != 'all') {
$forum_ids = explode(',', $uservoice_forums);
}
else if(USERVOICE_IMPORT_FORUMS != 'all') {
Expand Down

0 comments on commit 081615c

Please sign in to comment.