<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Brilliant - this really is excellent service!! Thanks, RogerL.<br>
<br>
Patrick R. Michaud wrote:
<blockquote cite="mid20060601041548.GB11384@host.pmichaud.com"
 type="cite">
  <pre wrap="">On Thu, Jun 01, 2006 at 01:04:24PM +1000, Roger Lainson wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">PmWiki is great - I've tried a few and this is by far the best for ease 
of customisation &amp; features.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
Thanks!

  </pre>
  <blockquote type="cite">
    <pre wrap="">I'd like to NOT use author profiles on my site. I've restricted the 
groups that can be created, but is there some way that I can suppress 
the Profiles.name link (eg. on RecentChanges and the page History) while 
retaining the author name as plain text?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
In local/config.php:

    include_once("$FarmD/scripts/author.php");
    $AuthorLink = $Author;

should be enough to do it.  (AFAIK, the page history already displays
just the author name without creating a link to the profiles page.)

If that doesn't work, then you can just set the $RecentChangesFmt
directly (this changes the default from $AuthorLink to $Author):

$RecentChangesFmt = array(
  '$SiteGroup.AllRecentChanges' =&gt;
    '* [[{$Group}.{$Name}]]  . . . $CurrentTime $[by] $Author: [=$ChangeSummary=]',
  '$Group.RecentChanges' =&gt;
    '* [[{$Group}/{$Name}]]  . . . $CurrentTime $[by] $Author: [=$ChangeSummary=]');


Hope this helps,

Pm
  </pre>
</blockquote>
</body>
</html>