return FALSE;
$string = $this->imageString();
+
+ $a = get_app();
+
+ $stamp1 = microtime(true);
file_put_contents($path, $string);
+ $a->save_timestamp($stamp1, "file");
}
public function imageString() {
$filesize = strlen($img_str);
$tempfile = tempnam(get_temppath(), "cache");
+
+ $a = get_app();
+ $stamp1 = microtime(true);
file_put_contents($tempfile, $img_str);
+ $a->save_timestamp($stamp1, "file");
+
$data = getimagesize($tempfile);
unlink($tempfile);
return(array());
} elseif (strlen($imagedata) == 0) {
logger("Uploading picture from ".$url, LOGGER_DEBUG);
+
+ $stamp1 = microtime(true);
$imagedata = @file_get_contents($url);
+ $a->save_timestamp($stamp1, "file");
}
$maximagesize = get_config('system','maximagesize');
*/
$tempfile = tempnam(get_temppath(), "cache");
+
+ $stamp1 = microtime(true);
file_put_contents($tempfile, $imagedata);
+ $a->save_timestamp($stamp1, "file");
+
$data = getimagesize($tempfile);
if (!isset($data["mime"])) {