From 88e0a3b3db49237bdba8f04db60e480049ff4827 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 15 Jun 2011 17:03:18 +0000 Subject: [PATCH] Broke some long lines --- includes/LinksUpdate.php | 13 +++++++++---- includes/SkinTemplate.php | 22 +++++++++++++++------- 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/includes/LinksUpdate.php b/includes/LinksUpdate.php index a800fdfa07..e819f7c4e7 100644 --- a/includes/LinksUpdate.php +++ b/includes/LinksUpdate.php @@ -110,7 +110,8 @@ class LinksUpdate { $existing = $this->getExistingImages(); $imageDeletes = $this->getImageDeletions( $existing ); - $this->incrTableUpdate( 'imagelinks', 'il', $imageDeletes, $this->getImageInsertions( $existing ) ); + $this->incrTableUpdate( 'imagelinks', 'il', $imageDeletes, + $this->getImageInsertions( $existing ) ); # Invalidate all image description pages which had links added or removed $imageUpdates = $imageDeletes + array_diff_key( $this->mImages, $existing ); @@ -141,7 +142,8 @@ class LinksUpdate { $categoryDeletes = $this->getCategoryDeletions( $existing ); - $this->incrTableUpdate( 'categorylinks', 'cl', $categoryDeletes, $this->getCategoryInsertions( $existing ) ); + $this->incrTableUpdate( 'categorylinks', 'cl', $categoryDeletes, + $this->getCategoryInsertions( $existing ) ); # Invalidate all categories which were added, deleted or changed (set symmetric difference) $categoryInserts = array_diff_assoc( $this->mCategories, $existing ); @@ -154,7 +156,8 @@ class LinksUpdate { $propertiesDeletes = $this->getPropertyDeletions( $existing ); - $this->incrTableUpdate( 'page_props', 'pp', $propertiesDeletes, $this->getPropertyInsertions( $existing ) ); + $this->incrTableUpdate( 'page_props', 'pp', $propertiesDeletes, + $this->getPropertyInsertions( $existing ) ); # Invalidate the necessary pages $changed = $propertiesDeletes + array_diff_assoc( $this->mProperties, $existing ); @@ -362,7 +365,9 @@ class LinksUpdate { function getLinkInsertions( $existing = array() ) { $arr = array(); foreach( $this->mLinks as $ns => $dbkeys ) { - $diffs = isset( $existing[$ns] ) ? array_diff_key( $dbkeys, $existing[$ns] ) : $dbkeys; + $diffs = isset( $existing[$ns] ) + ? array_diff_key( $dbkeys, $existing[$ns] ) + : $dbkeys; foreach ( $diffs as $dbk => $id ) { $arr[] = array( 'pl_from' => $this->mId, diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index b7b71bd183..5e189c1a25 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -674,7 +674,8 @@ class SkinTemplate extends Skin { # @todo FIXME: Class depends on skin $login_url['class'] = 'link-https'; if ( isset($createaccount_url) ) { - $https_url = preg_replace( '/^http:/', 'https:', $title->getFullURL("type=signup") ); + $https_url = preg_replace( '/^http:/', 'https:', + $title->getFullURL("type=signup") ); $createaccount_url['href'] = $https_url; # @todo FIXME: Class depends on skin $createaccount_url['class'] = 'link-https'; @@ -742,7 +743,8 @@ class SkinTemplate extends Skin { $text = $msg->text(); } else { global $wgContLang; - $text = $wgContLang->getFormattedNsText( MWNamespace::getSubject( $title->getNamespace() ) ); + $text = $wgContLang->getFormattedNsText( + MWNamespace::getSubject( $title->getNamespace() ) ); } $result = array(); @@ -1033,7 +1035,8 @@ class SkinTemplate extends Skin { 'context' => 'subject' ); - wfRunHooks( 'SkinTemplateNavigation::SpecialPage', array( &$this, &$content_navigation ) ); + wfRunHooks( 'SkinTemplateNavigation::SpecialPage', + array( &$this, &$content_navigation ) ); } // Gets list of language variants @@ -1184,7 +1187,8 @@ class SkinTemplate extends Skin { if ( !$out->isPrintable() ) { $nav_urls['print'] = array( 'text' => wfMsg( 'printableversion' ), - 'href' => $this->getTitle()->getLocalURL( $wgRequest->appendQueryValue( 'printable', 'yes', true ) ) + 'href' => $this->getTitle()->getLocalURL( + $wgRequest->appendQueryValue( 'printable', 'yes', true ) ) ); } @@ -1198,7 +1202,8 @@ class SkinTemplate extends Skin { } // Use the copy of revision ID in case this undocumented, shady hook tries to mess with internals - wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink', array( &$this, &$nav_urls, &$revid, &$revid ) ); + wfRunHooks( 'SkinTemplateBuildNavUrlsNav_urlsAfterPermalink', + array( &$this, &$nav_urls, &$revid, &$revid ) ); } if( $this->getTitle()->getNamespace() != NS_SPECIAL ) { @@ -1663,7 +1668,8 @@ abstract class BaseTemplate extends QuickTemplate { $realAttrs = array( 'type' => 'submit', 'name' => $mode, - 'value' => $this->translator->translate( $mode == 'go' ? 'searcharticle' : 'searchbutton' ), + 'value' => $this->translator->translate( + $mode == 'go' ? 'searcharticle' : 'searchbutton' ), ); $realAttrs = array_merge( $realAttrs, @@ -1685,7 +1691,9 @@ abstract class BaseTemplate extends QuickTemplate { unset( $buttonAttrs['alt'] ); $imgAttrs = array( 'src' => $attrs['src'], - 'alt' => isset( $attrs['alt'] ) ? $attrs['alt'] : $this->translator->translate( 'searchbutton' ), + 'alt' => isset( $attrs['alt'] ) + ? $attrs['alt'] + : $this->translator->translate( 'searchbutton' ), ); return Html::rawElement( 'button', $buttonAttrs, Html::element( 'img', $imgAttrs ) ); default: -- 2.20.1