summaryrefslogtreecommitdiffstats
path: root/lib/appconfig.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-23 00:28:12 +0200
committerFelix Moeller <mail@felixmoeller.de>2012-10-23 00:28:12 +0200
commit6a00a6b9ed49f9a9da044772e7ca7f3506672100 (patch)
tree2c0b0a57af5befe1c8153296cbcad3ff7c6ff4cf /lib/appconfig.php
parent03581ef463184081f8faa3f86bb6d21ee8bbc66d (diff)
downloadnextcloud-server-6a00a6b9ed49f9a9da044772e7ca7f3506672100.tar.gz
nextcloud-server-6a00a6b9ed49f9a9da044772e7ca7f3506672100.zip
Make Jenkins more happy.
This is NoSpaceAfterComma
Diffstat (limited to 'lib/appconfig.php')
-rw-r--r--lib/appconfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/appconfig.php b/lib/appconfig.php
index 6604e854d55..ed0e8f1d0bd 100644
--- a/lib/appconfig.php
+++ b/lib/appconfig.php
@@ -123,7 +123,7 @@ class OC_Appconfig{
*/
public static function setValue( $app, $key, $value ) {
// Does the key exist? yes: update. No: insert
- if(! self::hasKey($app,$key)) {
+ if(! self::hasKey($app, $key)) {
$query = OC_DB::prepare( 'INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` ) VALUES( ?, ?, ? )' );
$query->execute( array( $app, $key, $value ));
}