From: <var...@us...> - 2009-06-03 11:59:15
|
Revision: 6848 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6848&view=rev Author: vargenau Date: 2009-06-03 11:59:14 +0000 (Wed, 03 Jun 2009) Log Message: ----------- Include page content in notification e-mail for page creation Modified Paths: -------------- trunk/lib/MailNotify.php Modified: trunk/lib/MailNotify.php =================================================================== --- trunk/lib/MailNotify.php 2009-06-03 11:47:39 UTC (rev 6847) +++ trunk/lib/MailNotify.php 2009-06-03 11:59:14 UTC (rev 6848) @@ -238,6 +238,8 @@ $content = $this->pagename . " " . $version . " " . Iso8601DateTime($meta['mtime']) . "\n"; $content .= _("New page"); + $content .= "\n\n"; + $content .= $wikitext; } $editedby = sprintf(_("Edited by: %s"), $this->from); //$editedby = sprintf(_("Edited by: %s"), $meta['author']); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |