[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] phpgwapi/inc class.vfs_sql.inc.php
From: |
Caeies |
Subject: |
[Phpgroupware-cvs] phpgwapi/inc class.vfs_sql.inc.php |
Date: |
Wed, 20 Sep 2006 09:29:22 +0000 |
CVSROOT: /cvsroot/phpgwapi
Module name: phpgwapi
Changes by: Caeies <Caeies> 06/09/20 09:29:22
Modified files:
inc : class.vfs_sql.inc.php
Log message:
E_ALL fix
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/phpgwapi/inc/class.vfs_sql.inc.php?cvsroot=phpgwapi&r1=1.34&r2=1.35
Patches:
Index: class.vfs_sql.inc.php
===================================================================
RCS file: /cvsroot/phpgwapi/phpgwapi/inc/class.vfs_sql.inc.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- class.vfs_sql.inc.php 20 Sep 2006 09:26:42 -0000 1.34
+++ class.vfs_sql.inc.php 20 Sep 2006 09:29:22 -0000 1.35
@@ -8,7 +8,7 @@
* @license http://www.fsf.org/licenses/lgpl.html GNU Lesser General
Public License
* @package phpgwapi
* @subpackage vfs
- * @version $Id: class.vfs_sql.inc.php,v 1.34 2006/09/20 09:26:42 Caeies
Exp $
+ * @version $Id: class.vfs_sql.inc.php,v 1.35 2006/09/20 09:29:22 Caeies
Exp $
*/
/**
@@ -62,7 +62,7 @@
unlink(), rmdir(), touch(), etc.). If not, then
we're working completely
in the database.
*/
- $conf =& CreateObject('phpgwapi.config', 'phpgwapi');
+ $conf = CreateObject('phpgwapi.config', 'phpgwapi');
$conf->read_repository();
if ($conf->config_data['file_store_contents'] ==
'filesystem' || !$conf->config_data['file_store_contents'])
{
@@ -726,7 +726,7 @@
}
}
- $acl =& CreateObject ('phpgwapi.acl', $owner_id);
+ $acl = CreateObject ('phpgwapi.acl', $owner_id);
$acl->account_id = $owner_id;
$acl->read_repository ();
@@ -748,7 +748,7 @@
}
elseif (!$rights && $group_ok)
{
- $conf =& CreateObject('phpgwapi.config',
'phpgwapi');
+ $conf = CreateObject('phpgwapi.config',
'phpgwapi');
$conf->read_repository();
if ($conf->config_data['acl_default'] ==
'grant')
{
@@ -798,7 +798,7 @@
return False;
}
- $conf =& CreateObject('phpgwapi.config', 'phpgwapi');
+ $conf = CreateObject('phpgwapi.config', 'phpgwapi');
$conf->read_repository();
if ($this->file_actions || $p->outside)
{
@@ -886,7 +886,7 @@
)
);
- $conf =& CreateObject('phpgwapi.config', 'phpgwapi');
+ $conf = CreateObject('phpgwapi.config', 'phpgwapi');
$conf->read_repository();
if ($this->file_actions)
{