mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-27 09:41:37 +00:00
w/s
This commit is contained in:
parent
e60a8ed523
commit
fb5864083d
Notes:
Mark A. Hershberger
2012-02-06 04:37:05 +00:00
|
@ -637,7 +637,7 @@ class ExtParserFunctions {
|
|||
$inNeedle = self::killMarkers( $parser, (string)$inNeedle );
|
||||
|
||||
if ( !self::checkLength( $inStr ) ||
|
||||
!self::checkLength( $inNeedle ) ) {
|
||||
!self::checkLength( $inNeedle ) ) {
|
||||
wfProfileOut( __METHOD__ );
|
||||
return self::tooLongError();
|
||||
}
|
||||
|
@ -670,7 +670,7 @@ class ExtParserFunctions {
|
|||
$inNeedle = self::killMarkers( $parser, (string)$inNeedle );
|
||||
|
||||
if ( !self::checkLength( $inStr ) ||
|
||||
!self::checkLength( $inNeedle ) ) {
|
||||
!self::checkLength( $inNeedle ) ) {
|
||||
wfProfileOut( __METHOD__ );
|
||||
return self::tooLongError();
|
||||
}
|
||||
|
@ -780,8 +780,8 @@ class ExtParserFunctions {
|
|||
$inReplaceTo = self::killMarkers( $parser, (string)$inReplaceTo );
|
||||
|
||||
if ( !self::checkLength( $inStr ) ||
|
||||
!self::checkLength( $inReplaceFrom ) ||
|
||||
!self::checkLength( $inReplaceTo ) ) {
|
||||
!self::checkLength( $inReplaceFrom ) ||
|
||||
!self::checkLength( $inReplaceTo ) ) {
|
||||
wfProfileOut( __METHOD__ );
|
||||
return self::tooLongError();
|
||||
}
|
||||
|
@ -845,7 +845,7 @@ class ExtParserFunctions {
|
|||
}
|
||||
|
||||
if ( !self::checkLength( $inStr ) ||
|
||||
!self::checkLength( $inDiv ) ) {
|
||||
!self::checkLength( $inDiv ) ) {
|
||||
wfProfileOut( __METHOD__ );
|
||||
return self::tooLongError();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue