From dc55788dd4a7945b8ddef4391474efaca06b067d Mon Sep 17 00:00:00 2001 From: "Marc J. Schmidt" Date: Tue, 3 Jan 2017 16:55:39 +0100 Subject: [PATCH] Fixes #1324 - fixed wrong sprintf arguments positioning in getIdentifierPhp() Related to #1090. --- src/Propel/Generator/Platform/DefaultPlatform.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Propel/Generator/Platform/DefaultPlatform.php b/src/Propel/Generator/Platform/DefaultPlatform.php index db8fbaf831..33b1144896 100644 --- a/src/Propel/Generator/Platform/DefaultPlatform.php +++ b/src/Propel/Generator/Platform/DefaultPlatform.php @@ -1352,8 +1352,8 @@ public function getIdentifierPhp($columnValueMutator, $connectionVariableName = $tab, $columnValueMutator, $connectionVariableName, - $sequenceName ? ("'" . $sequenceName . "'") : '', - $phpType ? '('.$phpType.') ' : '' + $phpType ? '('.$phpType.') ' : '', + $sequenceName ? ("'" . $sequenceName . "'") : '' ); }