mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
Missed another semicolon.
This commit is contained in:
parent
30aad35397
commit
caeeb6a766
@ -221,6 +221,7 @@
|
|||||||
{
|
{
|
||||||
$application = $this->is->send('system.package_app',$app_id,$this->is->server['server_url']);
|
$application = $this->is->send('system.package_app',$app_id,$this->is->server['server_url']);
|
||||||
// comment from here down to stop the actual install
|
// comment from here down to stop the actual install
|
||||||
|
/*
|
||||||
// This is where I need to install the application
|
// This is where I need to install the application
|
||||||
$sep = filesystem_separator();
|
$sep = filesystem_separator();
|
||||||
@reset($application);
|
@reset($application);
|
||||||
@ -251,6 +252,7 @@
|
|||||||
fwrite($fp,base64_decode($file_content));
|
fwrite($fp,base64_decode($file_content));
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
// Comment above to stop the actual install
|
// Comment above to stop the actual install
|
||||||
@reset($application);
|
@reset($application);
|
||||||
return $application;
|
return $application;
|
||||||
@ -405,7 +407,7 @@
|
|||||||
}
|
}
|
||||||
$this->dir_file = Array();
|
$this->dir_file = Array();
|
||||||
$this->db->next_record();
|
$this->db->next_record();
|
||||||
$app_name = $this->db->f('app_name')
|
$app_name = $this->db->f('app_name');
|
||||||
$this->dir_file[$this->db->f('app_id')] = CreateObject('phpgwapi.xmlrpcval',
|
$this->dir_file[$this->db->f('app_id')] = CreateObject('phpgwapi.xmlrpcval',
|
||||||
Array(
|
Array(
|
||||||
'id' => CreateObject('phpgwapi.xmlrpcval',$this->db->f('app_id'),'int'),
|
'id' => CreateObject('phpgwapi.xmlrpcval',$this->db->f('app_id'),'int'),
|
||||||
|
Loading…
Reference in New Issue
Block a user