the bug: when including the code - to view more than 1 category. The problem papers...
When including the articles like this:
- Code: Select all
<?PHP
$number= '10';
$static = 'true';
$category = '1';
$template = 'Header';
include("/hsphere/local/home/samiro/bwoman.co.il/articles/news/show_news.php");
?>
everything work fine
But when include the code like this:
- Code: Select all
<?PHP
$number= '10';
$static = 'true';
$category = '1,2,3,4,5,6,9';
$template = 'Header';
include("/hsphere/local/home/samiro/bwoman.co.il/articles/news/show_news.php");
?>
the problem appears... if the article published in one of these categories (2,3,4,5,6,9) not (1) and everyone (even gusts) can see the article even if it saved as "unapproved" or "saved as draft"
HELPPPPP
what can I do to fix it?

