Status/Resolution/Reason: Closed/Fixed/
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 03/09/2016
Components: Document Management
Versions: 2016
Failure Type: Unspecified
Found In Build/Fixed In Build: Beta2_v12 /
Priority/Frequency: Major / Unknown
Locale/System: English / Win All
Vote Count: 0
Related Bugs:
4106314 - Blocking	CT Gibson
CF-4149530 - Similar to
action="addstamp" not adding stamp to last page
Repro:
<cfscript>
  cfhtmltopdf(destination=expandPath('./MyPDF1.pdf'), overwrite=true) {
	  writeOutput(repeatString("PDF 1 Page 1", 425));
	  cfhtmltopdfitem(type="pagebreak");
	  writeOutput(repeatString("PDF 1 Page 2", 425));
  };
  cfhtmltopdf(destination=expandPath('./MyPDF2.pdf'), overwrite=true) {
	  writeOutput(repeatString("PDF 2 Page 1", 425));
	  cfhtmltopdfitem(type="pagebreak");
	  writeOutput(repeatString("PDF 2 Page 2", 425));
  };
  cfpdf(action="merge", destination=expandPath('./MyPDFMerged.pdf'), overwrite=true) {
	  cfpdfparam(source=expandPath('./MyPDF1.pdf'));
	  cfpdfparam(source=expandPath('./MyPDF2.pdf'));
  };
  cfpdf(action="redact", source=expandPath('./MyPDFMerged.pdf'), destination=expandPath('./MyPDFRedacted.pdf'), overwrite=true) {
	  cfpdfparam(wordstoredact=["page"], ignorecase=true, pages="1-4");
  };
  cfpdf(action="addstamp", source=expandPath('./MyPDFRedacted.pdf'), destination=expandPath('./MyPDFStamped.pdf'), overwrite=true) {
	  cfpdfparam(iconname="approved", coordinates="200,300,400,500");
  };
</cfscript>
Actual result: MyPDFStamped.pdf only has a stamp on pages 1-3
Expected result: MyPDFStamped.pdf should have a stamp on all 4 pages
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID:	4126475
Bug Grouping Info:
Bug Group ID: BG175019
Bug ID: CF-4126475
Bug relationship: Pending Fix
Product: ColdFusion
Bug Group ID: BG175019
Bug ID: CF-4105649
Bug relationship: Awaiting Fix
Product: ColdFusion
Bug Group ID: BG175019
Bug ID: 4106314
Bug relationship: Pending Fix
Product: CT Gibson
Bug Group ID: BG175019
Bug ID: 4131476
Bug relationship: Awaiting Fix
Product: CT Gibson
External Customer Info:
External Company:  
External Customer Name: Aaron Neff
External Customer Email: adobelabs@itisdesign.com
External Test Config:  
Bug File Paths:
\\sjshare.corp.adobe.com\Prereleasebugfiles\ColdFusion\12.0\Beta2_v12\4105649\MyPDFStamped.pdf
  Attachments:
Comments: