Quote:
Originally Posted by ABeautifulBrown
This is at the top when I go to edit the privacy settings...
Warning: Invalid argument supplied for foreach() in /z/privacy.php on line 36
|
Hi there, here is the fix (which will also be in Zoints Local 1.0.2)
Edit file: /z/privacy.php
Find:
Code:
foreach ($this->tabs as $tabid => $tab)
{
foreach ($tab['disallowed'] as $gid)
{
$this->_template->checked($tabid, $gid, true);
}
}
Replace with:
Code:
foreach ($this->tabs as $tabid => $tab)
{
if (is_array($tab['disallowed']))
{
foreach ($tab['disallowed'] as $gid)
{
$this->_template->checked($tabid, $gid, true);
}
}
}