Skip to content

Commit

Permalink
Merge pull request #55 from MitrahSoft/LDEV-4692
Browse files Browse the repository at this point in the history
Added a fix in cfpdf action="removepassword" for LDEV-4692
  • Loading branch information
zspitzer authored Sep 14, 2023
2 parents cfcd1fb + c295b91 commit 7ca3dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/java/src/org/lucee/extension/pdf/tag/PDF.java
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public void setAction(String strAction) throws PageException {
else if ("get_info".equals(strAction)) action = ACTION_GET_INFO;
else if ("merge".equals(strAction)) action = ACTION_MERGE;
else if ("open".equals(strAction)) action = ACTION_OPEN;
else if ("removePassword".equals(strAction)) action = ACTION_OPEN;
else if ("removepassword".equals(strAction)) action = ACTION_OPEN;
// else if("processddx".equals(strAction)) action=ACTION_PROCESSDDX;
// else if("process-ddx".equals(strAction)) action=ACTION_PROCESSDDX;
// else if("process_ddx".equals(strAction)) action=ACTION_PROCESSDDX;
Expand Down

0 comments on commit 7ca3dcd

Please sign in to comment.