Completed
Push — 1.11.x ( c5cfcc...1cf9be )
by José
46:45 queued 17:54
created
main/document/document_quota.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         }
86 86
     }
87 87
     if ($quota_bytes != 0) {
88
-       $quota_percentage = round($quota_bytes / $total_quota_bytes, 2) * 100;
88
+        $quota_percentage = round($quota_bytes / $total_quota_bytes, 2) * 100;
89 89
     }
90 90
 
91 91
     $session[] = array(addslashes(get_lang('Teacher').': '.$user_name).' ('.format_file_size($quota_bytes).')', $quota_percentage);
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         }
106 106
         $session[] = array(addslashes(sprintf(get_lang('TeacherXInSession'), $user_name)), $quota_percentage);
107 107
 
108
-   }
108
+    }
109 109
 }
110 110
 
111 111
 $quota_percentage = round(($total_quota_bytes - $used_quota_bytes) / $total_quota_bytes, 2) * 100;
Please login to merge, or discard this patch.
plugin/pens/pens.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@
 block discarded – undo
29 29
 require_once __DIR__.'/chamilo_pens.php';
30 30
 
31 31
 class ChamiloPackageHandler extends PENSPackageHandler {
32
-	public function processPackage($request, $path_to_package) {
33
-		$server = PENSServer::singleton();
34
-		// Moves the package to archive/pens
35
-		$path_to_archives = api_get_path(SYS_ARCHIVE_PATH).'pens';
36
-		if (!is_dir($path_to_archives)) {
37
-			mkdir($path_to_archives, 0777, true);
38
-		}
39
-		rename($path_to_package, $path_to_archives.'/'.$request->getFilename());
40
-		// Insert the request in the database
41
-		$chamilo_pens = new ChamiloPens($request);
42
-		$chamilo_pens->save();
43
-		$server->sendAlert($request, new PENSResponse(0, 'Package successfully processed'));
44
-	}
32
+    public function processPackage($request, $path_to_package) {
33
+        $server = PENSServer::singleton();
34
+        // Moves the package to archive/pens
35
+        $path_to_archives = api_get_path(SYS_ARCHIVE_PATH).'pens';
36
+        if (!is_dir($path_to_archives)) {
37
+            mkdir($path_to_archives, 0777, true);
38
+        }
39
+        rename($path_to_package, $path_to_archives.'/'.$request->getFilename());
40
+        // Insert the request in the database
41
+        $chamilo_pens = new ChamiloPens($request);
42
+        $chamilo_pens->save();
43
+        $server->sendAlert($request, new PENSResponse(0, 'Package successfully processed'));
44
+    }
45 45
 }
46 46
 
47 47
 $handler = new ChamiloPackageHandler();
Please login to merge, or discard this patch.
src/Chamilo/CourseBundle/Component/CourseCopy/Course.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -326,9 +326,9 @@
 block discarded – undo
326 326
     }
327 327
 
328 328
     /**
329
-    * Serialize the course with the best serializer available
330
-    * @return string
331
-    */
329
+     * Serialize the course with the best serializer available
330
+     * @return string
331
+     */
332 332
     public static function serialize($course)
333 333
     {
334 334
         if (extension_loaded('igbinary')) {
Please login to merge, or discard this patch.
main/inc/lib/grade_model.lib.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -51,15 +51,15 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * Displays the title + grid
53 53
      */
54
-	public function display()
54
+    public function display()
55 55
     {
56
-		// action links
57
-		echo '<div class="actions" style="margin-bottom:20px">';
56
+        // action links
57
+        echo '<div class="actions" style="margin-bottom:20px">';
58 58
         echo '<a href="grade_models.php">'.Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM).'</a>';
59
-		echo '<a href="'.api_get_self().'?action=add">'.Display::return_icon('add.png', get_lang('Add'), '', ICON_SIZE_MEDIUM).'</a>';
60
-		echo '</div>';
59
+        echo '<a href="'.api_get_self().'?action=add">'.Display::return_icon('add.png', get_lang('Add'), '', ICON_SIZE_MEDIUM).'</a>';
60
+        echo '</div>';
61 61
         echo Display::grid_html('grade_model');
62
-	}
62
+    }
63 63
 
64 64
     /**
65 65
      * Returns a Form validator Obj
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
      */
255 255
     public function delete($id)
256 256
     {
257
-	    parent::delete($id);
257
+        parent::delete($id);
258 258
     }
259 259
 
260 260
     /**
@@ -308,11 +308,11 @@  discard block
 block discarded – undo
308 308
     /**
309 309
      * GradeModelComponents constructor.
310 310
      */
311
-	public function __construct()
311
+    public function __construct()
312 312
     {
313 313
         parent::__construct();
314 314
         $this->table = Database::get_main_table(TABLE_GRADE_MODEL_COMPONENTS);
315
-	}
315
+    }
316 316
 
317 317
     /**
318 318
      * @param array $params
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
      */
322 322
     public function save($params, $show_query = false)
323 323
     {
324
-	    $id = parent::save($params, $show_query);
324
+        $id = parent::save($params, $show_query);
325 325
 
326 326
         return $id;
327 327
     }
Please login to merge, or discard this patch.
main/exercise/TestCategory.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -503,10 +503,10 @@  discard block
 block discarded – undo
503 503
      * @param int exercise
504 504
      * @param array $check_in_question_list
505 505
      * @param array $categoriesAddedInExercise
506
-    *
507
-    * @param int $exerciseId
508
-    * @return array
509
-    */
506
+     *
507
+     * @param int $exerciseId
508
+     * @return array
509
+     */
510 510
     public static function getQuestionsByCat(
511 511
         $exerciseId,
512 512
         $check_in_question_list = array(),
@@ -636,9 +636,9 @@  discard block
 block discarded – undo
636 636
     }
637 637
 
638 638
     /**
639
-    * Display signs [+] and/or (>0) after question title if question has options
640
-    * scoreAlwaysPositive and/or uncheckedMayScore
641
-    */
639
+     * Display signs [+] and/or (>0) after question title if question has options
640
+     * scoreAlwaysPositive and/or uncheckedMayScore
641
+     */
642 642
     public function displayQuestionOption($in_objQuestion)
643 643
     {
644 644
         if ($in_objQuestion->type == MULTIPLE_ANSWER && $in_objQuestion->scoreAlwaysPositive) {
@@ -654,7 +654,7 @@  discard block
 block discarded – undo
654 654
      * key of $tabCategoryQuestions are the category id (0 for not in a category)
655 655
      * value is the array of question id of this category
656 656
      * Sort question by Category
657
-    */
657
+     */
658 658
     public static function sortTabByBracketLabel($in_tab)
659 659
     {
660 660
         $tabResult = array();
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
      * @param int $exerciseId
716 716
      * @author - hubert borderiou
717 717
      * @return int
718
-    */
718
+     */
719 719
     public static function getNumberMaxQuestionByCat($exerciseId)
720 720
     {
721 721
         $res_num_max = 0;
Please login to merge, or discard this patch.
main/dropbox/index.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@
 block discarded – undo
304 304
 
305 305
         // Object initialisation
306 306
         $dropbox_person = new Dropbox_Person(api_get_user_id(), $is_courseAdmin, $is_courseTutor);
307
-         // note: are the $is_courseAdmin and $is_courseTutor parameters needed????
307
+            // note: are the $is_courseAdmin and $is_courseTutor parameters needed????
308 308
 
309 309
         // Constructing the array that contains the total number of feedback messages per document.
310 310
         $number_feedback = get_total_number_feedback();
Please login to merge, or discard this patch.
main/admin/user_add.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
             $nb_ext_auth_source_added++;
177 177
         }
178 178
     }
179
-	if ($nb_ext_auth_source_added > 0) {
179
+    if ($nb_ext_auth_source_added > 0) {
180 180
         $group[] = $form->createElement('radio', 'password_auto', null, get_lang('ExternalAuthentication').' ', 2);
181 181
         $group[] = $form->createElement('select', 'auth_source', null, $auth_sources);
182 182
         $group[] = $form->createElement('static', '', '', '<br />');
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
             $expiration_date = null;
370 370
         }
371 371
 
372
-		$active = intval($user['active']);
372
+        $active = intval($user['active']);
373 373
         if (api_get_setting('login_is_email') == 'true') {
374 374
             $username = $email;
375 375
         }
@@ -402,8 +402,8 @@  discard block
 block discarded – undo
402 402
             $platform_admin
403 403
         );
404 404
 
405
-		Security::clear_token();
406
-		$tok = Security::get_token();
405
+        Security::clear_token();
406
+        $tok = Security::get_token();
407 407
         if (!empty($user_id)) {
408 408
             if (!empty($picture['name'])) {
409 409
                 $picture_uri = UserManager::update_user_picture(
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
 }
466 466
 
467 467
 if (!empty($message)) {
468
-	$message = Display::return_message(stripslashes($message));
468
+    $message = Display::return_message(stripslashes($message));
469 469
 }
470 470
 $content = $form->returnForm();
471 471
 
Please login to merge, or discard this patch.
main/social/profile.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -595,7 +595,7 @@
 block discarded – undo
595 595
                                 .' width="40px">';
596 596
                     $userInfo = api_get_user_info($user_invitation_id);
597 597
                     $invitations .= '<a href="'.api_get_path(WEB_PATH).'main/social/profile.php?u='.$user_invitation_id.'">'
598
-                                 .api_get_person_name($userInfo['firstname'], $userInfo['lastname']).'</a>';
598
+                                    .api_get_person_name($userInfo['firstname'], $userInfo['lastname']).'</a>';
599 599
 
600 600
                     $invitations .= '<div class="pull-right">';
601 601
                     $invitations .= Display::toolbarButton(
Please login to merge, or discard this patch.
plugin/sepe/src/sepe.lib.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
 function listTutorType($condition)
193 193
 {
194 194
     global $tableTutorCompany;
195
-       $sql = "SELECT * FROM $tableTutorCompany WHERE ".$condition." ORDER BY alias ASC, document_number ASC;";
195
+        $sql = "SELECT * FROM $tableTutorCompany WHERE ".$condition." ORDER BY alias ASC, document_number ASC;";
196 196
     $res = Database::query($sql);
197 197
     $aux = array();
198 198
     while ($row = Database::fetch_assoc($res)) {
Please login to merge, or discard this patch.