Passed
Push — master ( 86fd7b...3fe522 )
by Vitalii
01:34 queued 30s
created
html/user/submit.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
 
457 457
     $web_app = $web_apps[$app->name];
458 458
 
459
-    page_head("Batch $batch_id");
459
+    page_head("batch $batch_id");
460 460
     text_start();
461 461
     start_table();
462 462
     row2("name", $batch->name);
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
     $app = BoincApp::lookup_id($wu->appid);
562 562
     $web_app = $web_apps[$app->name];
563 563
 
564
-    page_head("Job $wu->name");
564
+    page_head("job $wu->name");
565 565
     text_start();
566 566
 
567 567
     echo "
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
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     if (!is_valid_filename($app)) die('bad arg');
100 100
     $variant = get_str('variant');
101 101
     if (!is_valid_filename($variant)) die('bad arg');
102
-    page_head("App $app variant $variant");
102
+    page_head("app $app variant $variant");
103 103
     $dir = "$buda_root/$app/$variant";
104 104
     start_table();
105 105
     table_header('name', 'size', 'md5');
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     // Note: we don't currently allow indirect file access.
219 219
     // If we did, we'd need to create job.toml to mount project dir
220 220
 
221
-    app_list("Variant $variant added for app $app.");
221
+    app_list("variant $variant added for app $app.");
222 222
 }
223 223
 
224 224
 function variant_delete() {
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
         if ($ret) {
246 246
             error_page("delete failed");
247 247
         }
248
-        $notice = "Variant $variant of app $app removed.";
248
+        $notice = "variant $variant of app $app removed.";
249 249
         app_list($notice);
250 250
     } else {
251 251
         page_head("Confirm");
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
         if ($ret) {
275 275
             error_page('delete failed');
276 276
         }
277
-        $notice = "App $app removed.";
277
+        $notice = "app $app removed.";
278 278
         app_list($notice);
279 279
     } else {
280 280
         page_head('Confirm');
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
     if (!is_valid_filename($name)) die('bad arg');
303 303
     $dir = "$buda_root/$name";
304 304
     if (file_exists($dir)) {
305
-        error_page("App $name already exists.");
305
+        error_page("app $name already exists.");
306 306
     }
307 307
     mkdir($dir);
308 308
     header("Location: buda.php");
Please login to merge, or discard this patch.