﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
2483	Warning wegen Shopvote-Cache	noRiddle	somebody	"Nachdem man bei Verwendung des Cache den Cache gelöscht hat erscheint einmalig dieses Warning:
{{{
file_get_contents(PATH/cache/shopvote.cache): failed to open stream: No such file or directory in File: PATH/includes/extra/application_top/application_top_end/70_shopvote.php on Line: 32
}}}

Diese Zeile in im Warning genannten File
{{{
$response = unserialize(file_get_contents(SQL_CACHEDIR.'shopvote.cache'));
}}}

müsste man so in der Art umschreiben:
{{{
$response = false;
if(is_file(SQL_CACHEDIR.'shopvote.cache')) {
  $response = unserialize(file_get_contents(SQL_CACHEDIR.'shopvote.cache'));
}
}}}

Gruß,
noRiddle
"	Bug/Fehler	closed	normal	modified-shop-2.0.8.0	Shop	2.0.7.2	fixed				
