Passed
Pull Request — master (#5918)
by David
13:04
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   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     global $buda_root;
99 99
     $app = get_str('app');
100 100
     $variant = get_str('variant');
101
-    page_head("App $app variant $variant");
101
+    page_head("app $app variant $variant");
102 102
     $dir = "$buda_root/$app/$variant";
103 103
     start_table();
104 104
     table_header('name', 'size', 'md5');
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     // Note: we don't currently allow indirect file access.
205 205
     // If we did, we'd need to create job.toml to mount project dir
206 206
 
207
-    app_list("Variant $variant added for app $app.");
207
+    app_list("variant $variant added for app $app.");
208 208
 }
209 209
 
210 210
 function variant_delete() {
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
         if ($ret) {
229 229
             error_page("delete failed");
230 230
         }
231
-        $notice = "Variant $variant of app $app removed.";
231
+        $notice = "variant $variant of app $app removed.";
232 232
         app_list($notice);
233 233
     } else {
234 234
         page_head("Confirm");
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     $name = get_str('name');
258 258
     $dir = "$buda_root/$name";
259 259
     if (file_exists($dir)) {
260
-        error_page("App $name already exists.");
260
+        error_page("app $name already exists.");
261 261
     }
262 262
     mkdir($dir);
263 263
     header("Location: buda.php");
Please login to merge, or discard this patch.