Comment 7 for bug 688289

Revision history for this message
Michael Lustfield (michaellustfield) wrote :

$download = !file_exists($filepath);
if (!$download) {
}
if ($download) {
}

I was just thinking that maybe this would be better?
if (file_exists($filepath)) {
}
else {
}

That might be a little more clean, but looks amazing otherwise. :)