Difference between revisions of "Issue:Call to a member function getPrefixedDBkey() on a non-object"

From FollowTheScore
Jump to: navigation, search
Line 24: Line 24:
 
I realised that Line 972 was meant to threat some data related to heading and I tried removing the heading (<nowiki>=Heading Example=</nowiki>) from my list separators and it worked. So basically it's a problem with heading generation -EmuWikiAdmin1 - July 20th 2008
 
I realised that Line 972 was meant to threat some data related to heading and I tried removing the heading (<nowiki>=Heading Example=</nowiki>) from my list separators and it worked. So basically it's a problem with heading generation -EmuWikiAdmin1 - July 20th 2008
  
 +
== Occurring in MW 1.13.0 ==
 +
 +
I just started getting this problem after a MediaWiki 1.13.0 upgrade.  Here is the DPL query in question:
 +
 +
<pre>
 +
{{#dpl:
 +
|category = My category name
 +
|format = ,\n=[[%PAGE%|%TITLE%]]=\n\n,,
 +
|includepage = %0
 +
|includetrim = true
 +
|noresultsheader = No entries
 +
|ordercollation = latin1_general_ci
 +
|reset = templates
 +
}}
 +
 +
All articles in the category are in the Template namespace.
 +
</pre>
 +
 +
--[[User:Maiden taiwan|Maiden taiwan]] 16:10, 20 August 2008 (CEST)
  
 
== Reply ==
 
== Reply ==

Revision as of 16:10, 20 August 2008

Description: Call to a member function getPrefixedDBkey() on a non-object
Extension / Version: DPL   /   1.7.3
Type / Status: Bug   /   open

Problem

From file version 20080505195057!Semeb_extensions.zip onwards, using mediawiki 1.12.0 I get this error when accessing any page that uses DPL:

Fatal error: Call to a member function getPrefixedDBkey() on a non-object in /var/www/mediawiki-1.12.0/includes/Preprocessor_DOM.php on line 972

Previous versions are OK.


Additional information to the problem

Hi, I also have the same problem but I realised the error only appears when {{#dpl:}} syntax is used instead of <DPL></DPL>, which works correctly. -EmuWikiAdmin1 - July 19th 2008

Even more information to the problem

I realised that Line 972 was meant to threat some data related to heading and I tried removing the heading (=Heading Example=) from my list separators and it worked. So basically it's a problem with heading generation -EmuWikiAdmin1 - July 20th 2008

Occurring in MW 1.13.0

I just started getting this problem after a MediaWiki 1.13.0 upgrade. Here is the DPL query in question:

{{#dpl:
|category = My category name
|format = ,\n=[[%PAGE%|%TITLE%]]=\n\n,,
|includepage = %0
|includetrim = true
|noresultsheader = No entries
|ordercollation = latin1_general_ci
|reset = templates
}}

All articles in the category are in the Template namespace.

--Maiden taiwan 16:10, 20 August 2008 (CEST)

Reply