js bug
[old-projects.git] / philter / philter / include / match.inc.php
1 <?php
2 /********************************************************************************
3 * include/match.inc.php : The class representing a procmail Match rule
4 * ---------------------
5 *
6 * This file is part of the philter distribution
7 * Copyright: See COPYING files that comes with this distribution
8 *
9 * vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
10 * $Id$
11 ********************************************************************************/
12
13 class Match extends CoreObject {
14 function Match() {
15 $this->CoreObject();
16 }
17
18 function to_string() {
19 return "";
20 }
21 }
22
23 ?>