|
From: <and...@us...> - 2007-10-14 15:27:32
|
Revision: 71
http://thevr.svn.sourceforge.net/thevr/?rev=71&view=rev
Author: andrewbelcher
Date: 2007-10-14 08:27:34 -0700 (Sun, 14 Oct 2007)
Log Message:
-----------
Fixed a couple errors in the site forums setup.
Modified Paths:
--------------
mods/pms/branches/permissions/includes/session.php
Modified: mods/pms/branches/permissions/includes/session.php
===================================================================
--- mods/pms/branches/permissions/includes/session.php 2007-10-13 20:13:33 UTC (rev 70)
+++ mods/pms/branches/permissions/includes/session.php 2007-10-14 15:27:34 UTC (rev 71)
@@ -1568,7 +1568,8 @@
}
// Set up the user's site/forum access
- if ($config['site_all'] == true && isset($this->data['user_sites']))
+ $this->data['site_forums'] = array();
+ if ($config['site_all'] == true && $this->data['user_sites'] <> '')
{
$sql_site_list = '(0,' . $config['site_id'] . ',' . $this->data['user_sites'] . ')';
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|