]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix using wrong quotes for breaking long lines
authorBart Visscher <bartv@thisnet.nl>
Tue, 26 Feb 2013 19:48:01 +0000 (20:48 +0100)
committerBart Visscher <bartv@thisnet.nl>
Tue, 26 Feb 2013 19:48:01 +0000 (20:48 +0100)
Fixes #1925

lib/base.php
lib/config.php
lib/setup.php
lib/user.php
lib/util.php

index f9bb1bb11bfd059c2efcb429ebd40c155eba695d..9bdbf48d725df25b99181ebdcd911a0ceadf6d8c 100644 (file)
@@ -162,9 +162,9 @@ class OC {
                        OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/');
                        OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/');
                } else {
-                       echo("3rdparty directory not found! Please put the ownCloud 3rdparty'
+                       echo('3rdparty directory not found! Please put the ownCloud 3rdparty'
                                .' folder in the ownCloud folder or the folder above.'
-                               .' You can also configure the location in the config.php file.");
+                               .' You can also configure the location in the config.php file.');
                        exit;
                }
                // search the apps folder
@@ -188,8 +188,8 @@ class OC {
                }
 
                if (empty(OC::$APPSROOTS)) {
-                       echo("apps directory not found! Please put the ownCloud apps folder in the ownCloud folder'
-                               .' or the folder above. You can also configure the location in the config.php file.");
+                       echo('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder'
+                               .' or the folder above. You can also configure the location in the config.php file.');
                        exit;
                }
                $paths = array();
@@ -214,8 +214,8 @@ class OC {
                        $tmpl = new OC_Template('', 'error', 'guest');
                        $tmpl->assign('errors', array(1 => array(
                                'error' => "Can't write into config directory 'config'",
-                               'hint' => "You can usually fix this by giving the webserver user write access'
-                                       .' to the config directory in owncloud"
+                               'hint' => 'You can usually fix this by giving the webserver user write access'
+                                       .' to the config directory in owncloud'
                        )));
                        $tmpl->printPage();
                        exit();
index a5c11b466f74db61e9052bbcc4d4207ed71ffa4e..0bd497b8e50a396758f987ca44ecef66052fd948 100644 (file)
@@ -166,8 +166,8 @@ class OC_Config{
                        $tmpl = new OC_Template( '', 'error', 'guest' );
                        $tmpl->assign('errors', array(1=>array(
                                'error'=>"Can't write into config directory 'config'",
-                               'hint'=>"You can usually fix this by giving the webserver user write access'
-                                       .' to the config directory in owncloud")));
+                               'hint'=>'You can usually fix this by giving the webserver user write access'
+                                       .' to the config directory in owncloud')));
                        $tmpl->printPage();
                        exit;
                }
index fd5f3cd5beec1c4547e010e986e67279668bfd6e..b7fe2f6a2cc0cf1ec274b90a26dca60fee072659 100644 (file)
@@ -261,8 +261,8 @@ class OC_Setup {
                }
 
                //fill the database if needed
-               $query="select count(*) from information_schema.tables'
-                       .' where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';";
+               $query='select count(*) from information_schema.tables'
+                       ." where table_schema='$dbname' AND table_name = '{$dbtableprefix}users';";
                $result = mysql_query($query, $connection);
                if($result) {
                        $row=mysql_fetch_row($result);
@@ -454,8 +454,8 @@ class OC_Setup {
                }
                //check for roles creation rights in oracle
 
-               $query="SELECT count(*) FROM user_role_privs, role_sys_privs'
-                       .' WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'";
+               $query='SELECT count(*) FROM user_role_privs, role_sys_privs'
+                       ." WHERE user_role_privs.granted_role = role_sys_privs.role AND privilege = 'CREATE ROLE'";
                $stmt = oci_parse($connection, $query);
                if (!$stmt) {
                        $entry = $l->t('DB Error: "%s"', array(oci_last_error($connection))) . '<br />';
index 16f6d2787cbb0ebaf0da818a63ac76653e10ab5e..f84aa8fad83686efe308ef4c011cea7af6ea8c31 100644 (file)
@@ -589,8 +589,8 @@ class OC_User {
         * @param string $userid
         */
        public static function enableUser($userid) {
-               $sql = "DELETE FROM `*PREFIX*preferences`'
-                       .' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?";
+               $sql = 'DELETE FROM `*PREFIX*preferences`'
+                       ." WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?";
                $stmt = OC_DB::prepare($sql);
                if ( ! OC_DB::isError($stmt) ) {
                        $result = $stmt->execute(array($userid, 'core', 'enabled', 'false'));
index cfb13ad292dbcc22423b87da7dc3367daef73a6d..060db73da00a0cf63d367cd8842f28e6d9efa3db 100755 (executable)
@@ -178,14 +178,14 @@ class OC_Util {
                }
 
                //common hint for all file permissons error messages
-               $permissionsHint="Permissions can usually be fixed by giving the webserver write access'
-                       .' to the ownCloud directory";
+               $permissionsHint='Permissions can usually be fixed by giving the webserver write access'
+                       .' to the ownCloud directory';
 
                // Check if config folder is writable.
                if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) {
                        $errors[]=array('error'=>"Can't write into config directory 'config'",
-                               'hint'=>"You can usually fix this by giving the webserver user write access'
-                                       .' to the config directory in owncloud");
+                               'hint'=>'You can usually fix this by giving the webserver user write access'
+                                       .' to the config directory in owncloud');
                }
 
                // Check if there is a writable install folder.
@@ -194,8 +194,8 @@ class OC_Util {
                                || !is_writable(OC_App::getInstallPath())
                                || !is_readable(OC_App::getInstallPath()) ) {
                                $errors[]=array('error'=>"Can't write into apps directory",
-                                       'hint'=>"You can usually fix this by giving the webserver user write access'
-                                       .' to the apps directory in owncloud or disabling the appstore in the config file.");
+                                       'hint'=>'You can usually fix this by giving the webserver user write access'
+                                       .' to the apps directory in owncloud or disabling the appstore in the config file.');
                        }
                }
                $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" );