37446caa5c
- event_tracer goes smarty - correction in index.tpl git-svn-id: http://piwigo.org/svn/trunk@2254 68402e56-0260-453c-a942-63ccdbb3a9ee
9 lines
194 B
PHP
9 lines
194 B
PHP
<?php
|
|
if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
|
|
|
|
function plugin_uninstall($plugin_id)
|
|
{
|
|
global $conf;
|
|
@unlink( $conf['local_data_dir'].'/plugins/'.$plugin_id.'.dat' );
|
|
}
|
|
?>
|