Fatal error: Call to a member function execute() on a non-object in /var/www/html/default/egroupware/phpgwapi/inc/class.sqlfs_stream_wrapper.inc.php on line 632
$stmt = self::$pdo->prepare('DELETE FROM '.self::TABLE.' WHERE fs_id=?');
if (($ret = $stmt->execute(array($stat['ino']))) && $operation == self::STORE2FS)
{
self::eacl($path,null,false,$stat['ino']); // remove all (=false) evtl. existing extended acl for that dir
rmdir(self::_fs_path($path));
}
looks like the sql statement is fine. Some how it is returning a false instead of a stream object.