From adfb2d2afab2b017db7006fcb7808d66aa2ef411 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Mon, 28 Aug 2017 10:35:37 +0000 Subject: [PATCH] Fixes for PHP 7.0 compatibility --- add_file.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/add_file.php b/add_file.php index 1fa4075..515dc55 100644 --- a/add_file.php +++ b/add_file.php @@ -4,7 +4,7 @@ validate::KOD($_POST['kod'], FALSE); if(!is_uploaded_file($_FILES['marc']['tmp_name'])) { - error::add('Nie wysłano pliku!'); + errorclass::add('Nie wysłano pliku!'); } $szukaj = array( MARC21::to_array( MARC21::from_string( file_get_contents( $_FILES['marc']['tmp_name'] ) ) ) ); -- Gitblit v1.9.1