Difference between revisions of "Issue:DPL references obsolete Cite mInCnt property"
From FollowTheScore
(Created page with "{{Issue |Type = Bug |Extension = DPL |Version = 2.01 |Description = DPL references the obsolete Cite $mInCnt property |Status = open }} == Problem == ...") |
m |
||
Line 17: | Line 17: | ||
; Line 89 | ; Line 89 | ||
− | : <code>$citeObject->mInCnt = $tmpCiteInCnt;/ | + | : <code>$citeObject->mInCnt = $tmpCiteInCnt;</code> |
Actually, the problem is probably larger. DPL.php depends on the internal implementation of Cite, which has changed in additional ways (more properties). | Actually, the problem is probably larger. DPL.php depends on the internal implementation of Cite, which has changed in additional ways (more properties). | ||
== Reply == | == Reply == |
Latest revision as of 18:50, 13 September 2013
Description: | DPL references the obsolete Cite $mInCnt property |
Extension / Version: | DPL / 2.01 |
Type / Status: | Bug / open |
Problem
Any DPL 2.01 query on MediaWiki 1.21.2 yields an error that $mInCnt is an unknown property of Cite. The Cite extension no longer has this property.
The errant lines in DPL.php are:
- Line 78
-
$tmpCiteInCnt = $citeObject->mInCnt;
- Line 89
-
$citeObject->mInCnt = $tmpCiteInCnt;
Actually, the problem is probably larger. DPL.php depends on the internal implementation of Cite, which has changed in additional ways (more properties).