diff options
Diffstat (limited to 'build/test/data/name.php')
-rw-r--r-- | build/test/data/name.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/test/data/name.php b/build/test/data/name.php index 7f77a0b28..a4b990e3d 100644 --- a/build/test/data/name.php +++ b/build/test/data/name.php @@ -7,7 +7,7 @@ if($wait) { $xml = $_REQUEST['xml'];
if($xml) {
header("Content-type: text/xml");
- eval("\$result = $xml;");
+ $result = ($xml == "5-2") ? "3" : "?";
echo "<math><calculation>$xml</calculation><result>$result</result></math>";
die();
}
|