summaryrefslogtreecommitdiffstats
path: root/api/php/api.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/php/api.php')
-rw-r--r--api/php/api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/php/api.php b/api/php/api.php
index c93b4a4..6fb329e 100644
--- a/api/php/api.php
+++ b/api/php/api.php
@@ -46,7 +46,7 @@
"nonce" => hash('sha256', $vzdevek."|".$datum."|".random_bytes(69))
)), YAML_UTF8_ENCODING, YAML_LN_BREAK);
$cmarray = explode("\n", $cm);
- array_pop(array_pop(array_pop(array_shift($cmarray))));
+ array_shift($cmarray); array_pop($cmarray); array_pop($cmarray);
$cs = implode("\n", $cmarray)."\n";
$response = file_put_contents($commentsfile, $cs, FILE_APPEND); // pri append ni locka
if ($response === FALSE) {