Fixed paths isbn cache

This commit is contained in:
Mattia Mascarello 2021-11-09 22:22:52 +01:00 committed by GitHub
parent 403dc490b4
commit 8326a75a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
<?php <?php
function cache_get($isbn){ function cache_get($isbn){
if(!file_exists("2/isbnCacheImg.json")) return false; if(!file_exists("isbnCacheImg.json")) return false;
$data = json_decode(file_get_contents("2/isbnCacheImg.json"),true); $data = json_decode(file_get_contents("isbnCacheImg.json"),true);
if(!$data) return false; if(!$data) return false;
$res = $data[$isbn]; $res = $data[$isbn];
if(!$res) return false; if(!$res) return false;
@ -10,7 +10,7 @@ function cache_get($isbn){
} }
function cache_set($isbn,$url){ function cache_set($isbn,$url){
if(file_exists("2/isbnCacheImg.json")){ if(file_exists("2/isbnCacheImg.json")){
$data = json_decode(file_get_contents("2/isbnCacheImg.json"),true)?:[]; $data = json_decode(file_get_contents("isbnCacheImg.json"),true)?:[];
} }
else{ else{
$data = []; $data = [];