Completed
Push — develop ( 783579...36bd7b )
by Patrick
10:40 queued 09:00
created
api/v1/class.AreasAPI.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@
 block discarded – undo
32 32
         if($args['name'] === '*')
33 33
         {
34 34
             $leads = $dataTable->read($odata->filter, $odata->select, $odata->top,
35
-                                  $odata->skip, $odata->orderby);
35
+                                    $odata->skip, $odata->orderby);
36 36
         }
37 37
         else
38 38
         {
39 39
             $leads = $dataTable->read(new \Data\Filter("area eq '".$args['name']."'"), $odata->select, $odata->top,
40
-                                  $odata->skip, $odata->orderby);
40
+                                    $odata->skip, $odata->orderby);
41 41
         }
42 42
         if(empty($leads))
43 43
         {
Please login to merge, or discard this patch.
profile.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,21 +36,21 @@
 block discarded – undo
36 36
 {
37 37
     $mails = $page->user->allMail;
38 38
     $count = count($mails);
39
-    $page->body.='
39
+    $page->body .= '
40 40
             <label for="allMail" class="col-sm-2 control-label">Registered Emails:</label>
41 41
             <div class="col-sm-10">';
42 42
     for($i = 0; $i < $count; $i++)
43 43
     {
44
-        $page->body.='<div class="input-group">
44
+        $page->body .= '<div class="input-group">
45 45
                         <input type="text" class="form-control" value="'.$mails[$i].'" readonly>
46 46
                         <div class="input-group-append">
47 47
                           <button class="btn btn-outline-danger" type="button" onClick="removeEmail(\''.$mails[$i].'\')"><i class="fas fa-minus"></i></button>
48 48
                         </div>
49 49
                       </div>';
50 50
     }
51
-    $page->body.='</div>';
51
+    $page->body .= '</div>';
52 52
 }
53
-$page->body.='
53
+$page->body .= '
54 54
             <label for="mail" class="col-sm-2 control-label">Email:</label>
55 55
             <div class="col-sm-10">
56 56
                 <input class="form-control" id="mail" name="mail" type="text" readonly/>
Please login to merge, or discard this patch.