jenkins-bot has submitted this change and it was merged.
Change subject: style: indent tweaks to Title.php
......................................................................
style: indent tweaks to Title.php
Title.php had some indentation oddities with mixed tabs and spaces. This
patch tweak the whitespaces and sometime explode boolean logics to have
a more consistent style.
Change-Id: I891c112236a021d9b4e38eb57eeb3b232172139c
---
M includes/Title.php
1 file changed, 40 insertions(+), 25 deletions(-)
Approvals:
IAlex: Looks good to me, approved
jenkins-bot: Verified
diff --git a/includes/Title.php b/includes/Title.php
index b11d8c1..c1782e5 100644
--- a/includes/Title.php
+++ b/includes/Title.php
@@ -1728,8 +1728,10 @@
*/
private function checkQuickPermissions( $action, $user, $errors,
$doExpensiveQueries, $short ) {
if ( $action == 'create' ) {
- if ( ( $this->isTalkPage() && !$user->isAllowed(
'createtalk' ) ) ||
- ( !$this->isTalkPage() && !$user->isAllowed(
'createpage' ) ) ) {
+ if (
+ ( $this->isTalkPage() && !$user->isAllowed(
'createtalk' ) ) ||
+ ( !$this->isTalkPage() && !$user->isAllowed(
'createpage' ) )
+ ) {
$errors[] = $user->isAnon() ? array(
'nocreatetext' ) : array( 'nocreate-loggedin' );
}
} elseif ( $action == 'move' ) {
@@ -1818,8 +1820,11 @@
$errors = $this->resultToError( $errors, $result );
}
// Check getUserPermissionsErrorsExpensive hook
- if ( $doExpensiveQueries && !( $short && count( $errors ) > 0 )
&&
- !wfRunHooks( 'getUserPermissionsErrorsExpensive',
array( &$this, &$user, $action, &$result ) ) ) {
+ if (
+ $doExpensiveQueries
+ && !( $short && count( $errors ) > 0 )
+ && !wfRunHooks( 'getUserPermissionsErrorsExpensive',
array( &$this, &$user, $action, &$result ) )
+ ) {
$errors = $this->resultToError( $errors, $result );
}
@@ -2274,8 +2279,10 @@
public function userCanEditJsSubpage() {
global $wgUser;
wfDeprecated( __METHOD__, '1.19' );
- return ( ( $wgUser->isAllowedAll( 'editusercssjs', 'edituserjs'
) )
- || preg_match( '/^' . preg_quote(
$wgUser->getName(), '/' ) . '\//', $this->mTextform ) );
+ return (
+ ( $wgUser->isAllowedAll( 'editusercssjs', 'edituserjs'
) )
+ || preg_match( '/^' . preg_quote( $wgUser->getName(),
'/' ) . '\//', $this->mTextform )
+ );
}
/**
@@ -2525,7 +2532,7 @@
if ( $getPages ) {
$cols = array( 'pr_page', 'page_namespace',
'page_title',
- 'pr_expiry', 'pr_type',
'pr_level' );
+ 'pr_expiry', 'pr_type', 'pr_level' );
$where_clauses[] = 'page_id=pr_page';
$tables[] = 'page';
} else {
@@ -2553,8 +2560,10 @@
$pagerestrictions[$row->pr_type] = array();
}
- if ( isset(
$pagerestrictions[$row->pr_type] ) &&
- !in_array( $row->pr_level,
$pagerestrictions[$row->pr_type] ) ) {
+ if (
+ isset(
$pagerestrictions[$row->pr_type] )
+ && !in_array( $row->pr_level,
$pagerestrictions[$row->pr_type] )
+ ) {
$pagerestrictions[$row->pr_type][] = $row->pr_level;
}
} else {
@@ -3193,15 +3202,18 @@
# Pages with "/./" or "/../" appearing in the URLs will often
be un-
# reachable due to the way web browsers deal with 'relative'
URLs.
# Also, they conflict with subpage syntax. Forbid them
explicitly.
- if ( strpos( $dbkey, '.' ) !== false &&
- ( $dbkey === '.' || $dbkey === '..' ||
- strpos( $dbkey, './' ) === 0 ||
- strpos( $dbkey, '../' ) === 0 ||
- strpos( $dbkey, '/./' ) !== false ||
- strpos( $dbkey, '/../' ) !== false ||
- substr( $dbkey, -2 ) == '/.' ||
- substr( $dbkey, -3 ) == '/..' ) )
- {
+ if (
+ strpos( $dbkey, '.' ) !== false &&
+ (
+ $dbkey === '.' || $dbkey === '..' ||
+ strpos( $dbkey, './' ) === 0 ||
+ strpos( $dbkey, '../' ) === 0 ||
+ strpos( $dbkey, '/./' ) !== false ||
+ strpos( $dbkey, '/../' ) !== false ||
+ substr( $dbkey, -2 ) == '/.' ||
+ substr( $dbkey, -3 ) == '/..'
+ )
+ ) {
return false;
}
@@ -3214,9 +3226,10 @@
# underlying database field. We make an exception for special
pages, which
# don't need to be stored in the database, and may edge over
255 bytes due
# to subpage syntax for long titles, e.g. [[Special:Block/Long
name]]
- if ( ( $this->mNamespace != NS_SPECIAL && strlen( $dbkey ) >
255 ) ||
- strlen( $dbkey ) > 512 )
- {
+ if (
+ ( $this->mNamespace != NS_SPECIAL && strlen( $dbkey ) >
255 )
+ || strlen( $dbkey ) > 512
+ ) {
return false;
}
@@ -3511,9 +3524,11 @@
if ( strlen( $nt->getDBkey() ) < 1 ) {
$errors[] = array( 'articleexists' );
}
- if ( ( $this->getDBkey() == '' ) ||
- ( !$oldid ) ||
- ( $nt->getDBkey() == '' ) ) {
+ if (
+ ( $this->getDBkey() == '' ) ||
+ ( !$oldid ) ||
+ ( $nt->getDBkey() == '' )
+ ) {
$errors[] = array( 'badarticleerror' );
}
@@ -4286,7 +4301,7 @@
}
$old_cmp = '>';
$new_cmp = '<';
- $options = (array) $options;
+ $options = (array)$options;
if ( in_array( 'include_old', $options ) ) {
$old_cmp = '>=';
}
--
To view, visit https://gerrit.wikimedia.org/r/49927
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I891c112236a021d9b4e38eb57eeb3b232172139c
Gerrit-PatchSet: 4
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Hashar <[email protected]>
Gerrit-Reviewer: Hashar <[email protected]>
Gerrit-Reviewer: IAlex <[email protected]>
Gerrit-Reviewer: jenkins-bot
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits