From: Brion Vibber Date: Fri, 9 Mar 2007 15:24:36 +0000 (+0000) Subject: make River happy X-Git-Tag: 1.31.0-rc.0~53834 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=21f7b4bea58184e28e8fa1b408fa67b1debf1373;p=lhc%2Fweb%2Fwiklou.git make River happy --- diff --git a/includes/Revision.php b/includes/Revision.php index 93b92a9931..0758d3f67b 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -264,7 +264,7 @@ class Revision { $this->mTimestamp = $row->rev_timestamp; $this->mDeleted = intval( $row->rev_deleted ); - if( !isset( $row->rev_len ) ) + if( is_null( $row->rev_len ) ) $this->mSize = null; else $this->mSize = intval( $row->rev_len );