mirror of
https://github.com/e107inc/e107.git
synced 2025-10-21 17:56:07 +02:00
22 lines
737 B
PHP
22 lines
737 B
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------------------------+
|
|
| e107 website system : http://e107.org
|
|
| Steve Dunstan 2001-2002 : jalist@e107.org
|
|
| Released under the terms and conditions of the GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/trackback/e_meta.php,v $
|
|
| $Revision: 1.1.1.1 $
|
|
| $Date: 2006-12-02 04:35:43 $
|
|
| $Author: mcfly_e107 $
|
|
+-----------------------------------------------------------------------------------------------+
|
|
*/
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
if(isset($pref['trackbackEnabled'])){
|
|
echo "<link rel='pingback' href='".SITEURLBASE.e_PLUGIN_ABS."trackback/xmlrpc.php' />";
|
|
}
|
|
|
|
?>
|
|
|