Vous pouvez commenter/noter en utilisant le compte
anonymous (mot de passe:
anonymous)
You can comment/rate using the
anonymous account (password:
anonymous).
Snippets taggés : "propel schema"
// Delete external tables from plugin schema (already defined in another schema (main or other plugin))
if (DCMC_EXTERNAL_TABLE) {
foreach (explode(',', DCMC_EXTERNAL_TABLES) as $external_table) {
$reg_exp = '/(<table name="'. $external_table. ')(((.)*(\s)*)*?)(<\/table>)/';
$xmlstr = preg_replace($reg_exp, '', $xmlstr);
}
}