Katzenbauer
Erfahrenes Mitglied
Ich habe in dieses Script einen Parse Error eingebaut. Nur ich finde ihn einfach nicht. Vielleicht findet ihn ein geschultes Auge:
Fehlermeldung:
PHP:
// Step One
if (REQUEST['step'] == "1") {
// Total Cost
if (!isset($totalcost) || empty($totalcost)) {
$totalcost = calculate_discounted_price($action['cost']);
$totalcost = calculate_taxed_price($totalcost, $action['tax']);
$totalcost = uttpoints_number_format($totalcost);
}
// Generate a standard confirmation.
eval('$current .= "' . fetch_template('uttstore_standard_confirmation') . '";');
//Step Two
if (REQUEST['step'] == "2") {
// Total Cost
if (!isset($totalcost) || empty($totalcost)) {
$totalcost = calculate_discounted_price($action['cost']);
$totalcost = calculate_taxed_price($totalcost, $action['tax']);
$totalcost = uttpoints_number_format($totalcost);
}
// Now make the points change hands...
uttstore_pay_monies($totalcost);
//Send Mail
$betreff = "Chat Bestellung";
$text = "Besteller: ".$bbuserinfo['username']."\n Bestellung: Chat";
mail('xxx@xxx.xxx', $betreff, $text);
// History Stuffs...
$userdiscount = calculate_discount_percent();
uttstore_add_history($action['actionid'], $action['cost'], $userdiscount, $action['tax'], $totalcost, "0", "0", "0");
// Send them home....
$current = "Danke für die Bestellung des Chats. Der Admin wird sie kontaktieren";
Fehlermeldung:
Code:
Parse error: parse error, unexpected $ in /homepages/31/d106019200/htdocs/b-o-a-r-d.de/html/uttstore/action.orderchat.php on line 33
Zuletzt bearbeitet: