Skip to content

Commit 6fea36c

Browse files
author
Blair McKenzie
committed
fixed g_faces argument
1 parent f485a2e commit 6fea36c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/formtools/image.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364

365365
<cfswitch expression="#arguments.resizeMethod#">
366366
<cfcase value="center">
367-
<cfset format = listappend(format,"g_faces:center") />
367+
<cfset format = listappend(format,"g_faces") />
368368
</cfcase>
369369
<cfcase value="topleft">
370370
<cfset format = listappend(format,"g_north_west") />

packages/lib/cloudinary.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ component {
9494

9595
switch (arguments.crop){
9696
case "center":
97-
format = listappend(format,"g_faces:center");
97+
format = listappend(format,"g_faces");
9898
break;
9999
case "topleft":
100100
format = listappend(format,"g_north_west");

0 commit comments

Comments
 (0)