[llvm-commits] CVS: nightlytest-serverside/machinegraph.php
Patrick Jenkins
pjenkins at apple.com
Thu Aug 17 10:32:21 PDT 2006
Changes in directory nightlytest-serverside:
machinegraph.php updated: 1.1.1.1 -> 1.2
---
Log message:
Created a more descriptive error message for when a user tries to create a
graph from a machines page without selecting anythign to graph. The
previous error message said "ERROR: Incorrect URL" which led users to
believe the problem was on the serverside.
---
Diffs of the changes: (+1 -1)
machinegraph.php | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: nightlytest-serverside/machinegraph.php
diff -u nightlytest-serverside/machinegraph.php:1.1.1.1 nightlytest-serverside/machinegraph.php:1.2
--- nightlytest-serverside/machinegraph.php:1.1.1.1 Wed Jul 5 15:56:33 2006
+++ nightlytest-serverside/machinegraph.php Thu Aug 17 12:32:07 2006
@@ -1,7 +1,7 @@
<?php
if(!isset($HTTP_GET_VARS['measure'])){
- die("ERROR: Incorrect URL\n");
+ die("ERROR: Please select a checkbox at the top of a column to create a graph.\n");
}
$measure=$HTTP_GET_VARS['measure'];
More information about the llvm-commits
mailing list