From 21f7b4bea58184e28e8fa1b408fa67b1debf1373 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Mar 2007 15:24:36 +0000 Subject: [PATCH] make River happy --- includes/Revision.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1