Line 1... |
Line 1... |
1 |
<?php
|
1 |
<?php
|
2 |
// $Id: ezmlm-author.php,v 1.1 2005-09-22 14:02:46 ddelon Exp $
|
2 |
// $Id: ezmlm-author.php,v 1.2 2005-09-27 16:43:08 alexandre_tb Exp $
|
3 |
//
|
3 |
//
|
4 |
// ezmlm-author.php - ezmlm-php v2.0
|
4 |
// ezmlm-author.php - ezmlm-php v2.0
|
5 |
// --------------------------------------------------------------
|
5 |
// --------------------------------------------------------------
|
6 |
// Displays all messages by a given author
|
6 |
// Displays all messages by a given author
|
7 |
// --------------------------------------------------------------
|
7 |
// --------------------------------------------------------------
|
Line 55... |
Line 55... |
55 |
$subject = $mailDecode->headers['subject'];
|
55 |
$subject = $mailDecode->headers['subject'];
|
56 |
$subject = preg_replace("/\[" . $this->listname . "\]/", "", $subject);
|
56 |
$subject = preg_replace("/\[" . $this->listname . "\]/", "", $subject);
|
57 |
$date = preg_replace ('/CEST/', '', $mailDecode->headers['date']);
|
57 |
$date = preg_replace ('/CEST/', '', $mailDecode->headers['date']);
|
58 |
print '<tr class="'.$class[$i].'">'."\n";
|
58 |
print '<tr class="'.$class[$i].'">'."\n";
|
Line 59... |
Line 59... |
59 |
|
59 |
|
60 |
$hash = $this->makehash($val->headers['from']);
|
60 |
$hash = $this->makehash($mailDecode->headers['from']);
|
61 |
print '<td>'.$this->makelink("action=show_author_msgs&actionargs[]=" . $hash,$this->decode_iso($this->protect_email($mailDecode->headers['from'],TRUE)));
|
61 |
print '<td>'.$this->makelink("action=show_author_msgs&actionargs[]=" . $hash,$this->decode_iso($this->protect_email($mailDecode->headers['from'],TRUE)));
|
Line 62... |
Line 62... |
62 |
print '</td>';
|
62 |
print '</td>';
|
63 |
|
63 |
|