Version: (using KDE Devel) Installed from: Compiled sources The %U, %u, %f, etc strings are not substituted if they are entered as left footer in the printer dialog -> Header & Footer. The attached patch fix this (it's a simple off-by-one error).
Created attachment 9155 [details] kate-print-footer.patch
CVS commit by alund: Patch from Gregorio Guidi BUG: 97373 M +1 -1 kateprinter.cpp 1.15 --- kdelibs/kate/part/kateprinter.cpp #1.14:1.15 @@ -246,5 +246,5 @@ bool KatePrinter::print (KateDocument *d int pos = reTags.search( footerTags ); QString rep; - while ( pos > 0 ) + while ( pos > -1 ) { rep = tags[reTags.cap( 1 )];