use central include file
[stapibas.git] / www / xmlrpc.php
1 <?php
2 namespace stapibas;
3 /**
4  * Simply stores all pingbacks in the database.
5  */
6 require_once 'www-header.php';
7
8 $s = new \PEAR2\Services\Linkback\Server();
9 $s->addCallback(new Linkback_DbStorage($db));
10 $s->addCallback(new Linkback_Mailer());
11 $s->run();
12 ?>