From 962f69295b522081b4e26873bf55f2df9c7ea93a Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Tue, 15 Jan 2013 15:06:45 +0100 Subject: [PATCH] Fixed reference issue in PHP 5.3 --- src/html/api/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/html/api/index.php b/src/html/api/index.php index b6eb043..5484c73 100644 --- a/src/html/api/index.php +++ b/src/html/api/index.php @@ -93,12 +93,12 @@ function saveEntry($id) { $statement=$connection->prepare("update entry set value_date=:value_date, operation_date=:operation_date, label=:label, value=:value, account_id=:account_id, category=:category where id=:id"); $statement->bindParam("value_date", $entry['value_date']); - $statement->bindParam("operation_date", array_key_exists("operation_date", $entry) ? $entry['operation_date'] : null); + $statement->bindParam("operation_date", $entry['operation_date']); $statement->bindParam("label", $entry['label']); $statement->bindParam("value", $entry['value']); $statement->bindParam("account_id", $entry['account_id']); $statement->bindParam("id", $entry['id']); - $statement->bindParam("category", array_key_exists("category", $entry) ? $entry["category"] : null); + $statement->bindParam("category", $entry["category"]); $return=$statement->execute();