Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-02-11 20:44:02 +0400
committerBart Visscher <bartv@thisnet.nl>2013-02-14 11:38:37 +0400
commitffae6f4b847e96d691053300c355ab81edc6c1c8 (patch)
tree928a210abf40ab333c0a08fb469be87c71147b24 /lib/installer.php
parent2d6d0a4ad438590504c13f04a6b2916a59a99c30 (diff)
Style-fix: Breakup long lines
Diffstat (limited to 'lib/installer.php')
-rw-r--r--lib/installer.php25
1 files changed, 19 insertions, 6 deletions
diff --git a/lib/installer.php b/lib/installer.php
index aa192880af0..251d115b76c 100644
--- a/lib/installer.php
+++ b/lib/installer.php
@@ -136,21 +136,29 @@ class OC_Installer{
// check if the app is compatible with this version of ownCloud
$version=OC_Util::getVersion();
if(!isset($info['require']) or ($version[0]>$info['require'])) {
- OC_Log::write('core', 'App can\'t be installed because it is not compatible with this version of ownCloud', OC_Log::ERROR);
+ OC_Log::write('core',
+ 'App can\'t be installed because it is not compatible with this version of ownCloud',
+ OC_Log::ERROR);
OC_Helper::rmdirr($extractDir);
return false;
}
// check if shipped tag is set which is only allowed for apps that are shipped with ownCloud
if(isset($info['shipped']) and ($info['shipped']=='true')) {
- OC_Log::write('core', 'App can\'t be installed because it contains the <shipped>true</shippe> tag which is not allowed for non shipped apps', OC_Log::ERROR);
+ OC_Log::write('core',
+ 'App can\'t be installed because it contains the <shipped>true</shippe>'
+ .' tag which is not allowed for non shipped apps',
+ OC_Log::ERROR);
OC_Helper::rmdirr($extractDir);
return false;
}
// check if the ocs version is the same as the version in info.xml/version
if(!isset($info['version']) or ($info['version']<>$data['appdata']['version'])) {
- OC_Log::write('core', 'App can\'t be installed because the version in info.xml/version is not the same as the version reported from the app store', OC_Log::ERROR);
+ OC_Log::write('core',
+ 'App can\'t be installed because the version in info.xml/version is not the same'
+ .' as the version reported from the app store',
+ OC_Log::ERROR);
OC_Helper::rmdirr($extractDir);
return false;
}
@@ -251,7 +259,8 @@ class OC_Installer{
* -# including appinfo/upgrade.php
* -# setting the installed version
*
- * upgrade.php can determine the current installed version of the app using "OC_Appconfig::getValue($appid, 'installed_version')"
+ * upgrade.php can determine the current installed version of the app using
+ * "OC_Appconfig::getValue($appid, 'installed_version')"
*/
public static function updateApp( $app ) {
$ocsid=OC_Appconfig::getValue( $app, 'ocsid');
@@ -437,7 +446,9 @@ class OC_Installer{
// check if grep is installed
$grep = exec('which grep');
if($grep=='') {
- OC_Log::write('core', 'grep not installed. So checking the code of the app "'.$appname.'" was not possible', OC_Log::ERROR);
+ OC_Log::write('core',
+ 'grep not installed. So checking the code of the app "'.$appname.'" was not possible',
+ OC_Log::ERROR);
return true;
}
@@ -447,7 +458,9 @@ class OC_Installer{
$result = exec($cmd);
// bad pattern found
if($result<>'') {
- OC_Log::write('core', 'App "'.$appname.'" is using a not allowed call "'.$bl.'". Installation refused.', OC_Log::ERROR);
+ OC_Log::write('core',
+ 'App "'.$appname.'" is using a not allowed call "'.$bl.'". Installation refused.',
+ OC_Log::ERROR);
return false;
}
}