mirror of
https://github.com/e107inc/e107.git
synced 2025-02-12 18:50:37 +01:00
20 lines
454 B
PHP
20 lines
454 B
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2015 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Plugin Trackback
|
|
*
|
|
*
|
|
*/
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
if(e107::isInstalled('trackback') && !empty($pref['trackbackEnabled']) && USER_AREA)
|
|
{
|
|
echo "<link rel='pingback' href='".SITEURLBASE.e_PLUGIN_ABS."trackback/trackback.php' />";
|
|
}
|
|
|
|
?>
|