Skip to content

Commit dc55788

Browse files
committed
Fixes #1324 - fixed wrong sprintf arguments positioning in getIdentifierPhp()
Related to #1090.
1 parent 21c75aa commit dc55788

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Propel/Generator/Platform/DefaultPlatform.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1352,8 +1352,8 @@ public function getIdentifierPhp($columnValueMutator, $connectionVariableName =
13521352
$tab,
13531353
$columnValueMutator,
13541354
$connectionVariableName,
1355-
$sequenceName ? ("'" . $sequenceName . "'") : '',
1356-
$phpType ? '('.$phpType.') ' : ''
1355+
$phpType ? '('.$phpType.') ' : '',
1356+
$sequenceName ? ("'" . $sequenceName . "'") : ''
13571357
);
13581358
}
13591359

0 commit comments

Comments
 (0)