You are not logged in.
Pages: 1
Hi,
Possible a bug in below function, It make '0' is convert to empty string value.
//File: cms.php
function replaceInternalPageLinks($html) {
$drop_count = 0;
//Bug: This block convert '0' to empty string.
if (!trim($html)) {
return "";
}
/////////////////////////////////////
if (substr($html,0,6) == "ipl://") {
$html = $this->getInternalPageLink($html);
} else {
$html = $this->replaceRelativeRoots($html);
$html = preg_replace_callback('^="(ipl:\/\/[a-zA-Z0-9\:\/\.\?\=\-]*)"^',array($this,"replaceInternalPageLinksHook"),$html);
}
return $html;
}
Hello everyone, could you please guide me how to configure BigTreeCMS to send email (example: forgot-password email,..) by using my smtp account?
I'm planning to create a module that let administrator can configure smtp parameter from Admin's module page. Please tell me if there a module with same functionality existed.
Thanks,
TamTT
Pages: 1