admin
Karma: 98
|
Re:Email - 2010/08/22 17:13
You could modify the file ../com_remository/c-classes/remository_savefile_Controller.php. Look around line 129 for:
| Code: |
if ($this->repository->Send_Sub_Mail) $this->repository->sendAdminMail($this->remUser->fullname.' ('.$this->remUser->name.')', $newfile->filetitle, $newfile->containerid, $newfile->published);
|
and try changing it to:
| Code: |
if ($this->repository->Send_Sub_Mail AND !$this->remUser->hasAutoApprove($container)) $this->repository->sendAdminMail($this->remUser->fullname.' ('.$this->remUser->name.')', $newfile->filetitle, $newfile->containerid, $newfile->published);
|
Martin Brampton aka Counterpoint http://aliro.org http://black-sheep-research.com |