Passed
Pull Request — master (#6551)
by Vitalii
14:47 queued 05:48
created
html/user/submit.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
 
640 640
     $is_assim_move = is_assim_move($app);
641 641
 
642
-    page_head("Batch $batch_id");
642
+    page_head("batch $batch_id");
643 643
     text_start(800);
644 644
     start_table();
645 645
     row2("name", $batch->name);
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
 
924 924
     if (get_int('confirmed', true)) {
925 925
         abort_batch($batch);
926
-        page_head("Batch $batch_id aborted");
926
+        page_head("batch $batch_id aborted");
927 927
         return_link();
928 928
         page_tail();
929 929
     } else {
@@ -952,7 +952,7 @@  discard block
 block discarded – undo
952 952
 
953 953
     if (get_int('confirmed', true)) {
954 954
         retire_batch($batch);
955
-        page_head("Batch $batch_id retired");
955
+        page_head("batch $batch_id retired");
956 956
         return_link();
957 957
         page_tail();
958 958
     } else {
Please login to merge, or discard this patch.
html/user/buda.php 1 patch
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         );
196 196
     }
197 197
     form_input_text("Plan class$pc", 'plan_class', $variant_desc->plan_class);
198
-    form_select("Dockerfile$sb", 'dockerfile', $sbitems, $variant_desc->dockerfile);
198
+    form_select("dockerfile$sb", 'dockerfile', $sbitems, $variant_desc->dockerfile);
199 199
     form_select2_multi("Application files$sb", 'app_files', $sbitems, $variant_desc->app_files);
200 200
     form_submit('OK');
201 201
     form_end();
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     // Note: we don't currently allow indirect file access.
394 394
     // If we did, we'd need to create job.toml to mount project dir
395 395
 
396
-    app_list("Variant $variant added for app $app.");
396
+    app_list("variant $variant added for app $app.");
397 397
 }
398 398
 
399 399
 function variant_delete() {
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
         if ($ret) {
421 421
             error_page("delete failed");
422 422
         }
423
-        $notice = "Variant $variant of app $app removed.";
423
+        $notice = "variant $variant of app $app removed.";
424 424
         app_list($notice);
425 425
     } else {
426 426
         page_head("Confirm");
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
         if ($ret) {
451 451
             error_page('delete failed');
452 452
         }
453
-        $notice = "App $app removed.";
453
+        $notice = "app $app removed.";
454 454
         app_list($notice);
455 455
     } else {
456 456
         page_head('Confirm');
@@ -547,7 +547,7 @@  discard block
 block discarded – undo
547 547
         }
548 548
         $dir = "$buda_root/$app_name";
549 549
         if (file_exists($dir)) {
550
-            error_page("App $app_name already exists.");
550
+            error_page("app $app_name already exists.");
551 551
         }
552 552
         mkdir($dir);
553 553
         $desc->user_id = $user->id;
Please login to merge, or discard this patch.