Other perl wikis with this feature or related: http://www.oddmuse.org/cgi-bin/wiki/CreationDate_Module
Thanks in advance.
sub OpenNewPage {
...
$Page{'tscreate'} = $Now; # Set once at creation
+ $Page{'authorcreate'} = GetParam('username','') unless $Page{'authorcreate'}
sub OpenNewSection {
...
$Section{'tscreate'} = $Now; # Set once at creation
+ $Page{'authorcreate'} = GetParam('username','') unless $Page{'authorcreate'}
sub GetFooterText {
...
if ($Section{'revision'} > 0) {
$result .= '<br>';
+ if ($Page{'authorcreate'}) {
+ $result .= Tss('Originally created %1 by %2', &TimeToText($Page{'tscreate'}), $Page{'authorcreate'});
+ }
+ $result .= ' | ';
--JuanmaMP