Skip to content
Snippets Groups Projects
Commit 69dd6af5 authored by Frank Karlitschek's avatar Frank Karlitschek Committed by Thomas Müller
Browse files

use ===

Shoudn't make a difference in this case but just in case

Conflicts:
	lib/ocsclient.php
parent b948c1a1
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,12 @@ class OC_OCSClient{
* to set it in the config file or it will fallback to the default
*/
private static function getAppStoreURL() {
$url = OC_Config::getValue('appstoreurl', 'http://api.apps.owncloud.com/v1');
if(OC_Util::getEditionString()===''){
$default='http://api.apps.owncloud.com/v1';
}else{
$default='';
}
$url = OC_Config::getValue('appstoreurl', $default);
return($url);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment