Refrain from reading files of 0 length. Props technosailor. fixes #1999

git-svn-id: http://svn.automattic.com/wordpress/trunk@4314 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2006-10-04 07:29:33 +00:00
parent 7d037d255d
commit c0c0885c61
1 changed files with 6 additions and 2 deletions

View File

@ -63,8 +63,12 @@ default:
if (!$error) {
$f = @ fopen($real_file, 'r');
if ( $f ) {
$content = fread($f, filesize($real_file));
$content = htmlspecialchars($content);
if ( filesize($real_file ) > 0 ) {
$content = fread($f, filesize($real_file));
$content = htmlspecialchars($content);
} else {
$content = '';
}
} else {
$error = true;
}