Skip to content

Commit

Permalink
Fixes #1324 - fixed wrong sprintf arguments positioning in getIdentif…
Browse files Browse the repository at this point in the history
…ierPhp()

Related to #1090.
  • Loading branch information
marcj committed Jan 3, 2017
1 parent 21c75aa commit dc55788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Propel/Generator/Platform/DefaultPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -1352,8 +1352,8 @@ public function getIdentifierPhp($columnValueMutator, $connectionVariableName =
$tab,
$columnValueMutator,
$connectionVariableName,
$sequenceName ? ("'" . $sequenceName . "'") : '',
$phpType ? '('.$phpType.') ' : ''
$phpType ? '('.$phpType.') ' : '',
$sequenceName ? ("'" . $sequenceName . "'") : ''
);
}

Expand Down

0 comments on commit dc55788

Please sign in to comment.