Hi,
nice Mod
But is there an Option to make it Multilanguage or put an Second Variable in the Plugins?
I have Users with English Language and German.
In German the Signature likes " Gesendet von meinem M2 mit Tapatalk"
I would put this "Gesendet von meinem" in the Replacevariable too.
1. Plugin
PHP Code:
if ($this->post['pagetext'])
{
$this->post['pagetext'] = preg_replace ('#Sent from my[ -~]+\s*$#' , '', $this->post['pagetext']);
}
2.Plugin
PHP Code:
if ($this->post['pagetext'])
{
$this->post['pagetext'] = preg_replace ('#Sent from my[ -~]+\s*$#' , '', $this->post['pagetext']);
}
3.Plugin
PHP Code:
$post['message'] = preg_replace ('#Sent from my[ -~]+\s*$#' , '', $post['message']);