From 1ef26168061d52933ed3971be38bbf1d891fff70 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 15 Aug 2005 02:40:33 +0000 Subject: [PATCH] * Fixed undefined variable error --- includes/SpecialUndelete.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index 2c0c2ad094..a29fee3972 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -90,6 +90,8 @@ class PageArchive { * Get the text from an archive row containing ar_text, ar_flags and ar_text_id */ function getTextFromRow( $row ) { + $fname = 'PageArchive::getTextFromRow'; + if( is_null( $row->ar_text_id ) ) { // An old row from MediaWiki 1.4 or previous. // Text is embedded in this row in classic compression format. -- 2.20.1