Fixed code for selecting multiple authors via query params

git-svn-id: https://develop.svn.wordpress.org/trunk@403 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dougal Campbell 2003-10-01 20:58:44 +00:00
parent 8355b75335
commit e2674bd615

View File

@ -143,10 +143,11 @@ if ((empty($cat)) || ($cat == 'all') || ($cat == '0')) {
$whichcat .= ')'; $whichcat .= ')';
} }
// author stuff // author stuff
if ((empty($author)) || ($author == 'all') || ($cat == '0')) { if ((empty($author)) || ($author == 'all') || ($author == '0')) {
$whichauthor=''; $whichauthor='';
} elseif (intval($author)) { } else {
$author = intval($author); $author = ''.urldecode($author).'';
$author = addslashes_gpc($author);
if (stristr($author, '-')) { if (stristr($author, '-')) {
$eq = '!='; $eq = '!=';
$andor = 'AND'; $andor = 'AND';