Skip to content

Commit

Permalink
Merge pull request #1671 from SemanticMediaWiki/performUpdate
Browse files Browse the repository at this point in the history
Move non-argument out of function call in performUpdate
  • Loading branch information
mwjames committed Jun 18, 2016
2 parents c504c1d + 66f2ae4 commit baf63e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion includes/StoreUpdater.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ private function performUpdate() {
$revision = $wikiPage->getRevision();

$this->updateSemanticData( $title, $wikiPage, $revision );
$this->doRealUpdate( $this->inspectPropertySpecification() );
$this->inspectPropertySpecification();
$this->doRealUpdate();

return true;
}
Expand Down

0 comments on commit baf63e8

Please sign in to comment.