cfeodorov@yahoo.com
Karma: 0
|
A small hack to do - 2009/03/13 13:19
Hello, In the file: /com_remository/v-classes/remositoryFileInfoHTML.php
line 253:
| Code: | if ($file->submittedby'') $this->fileOutputBox (_DOWN_SUB_BY, $submitter->fullname().' ('.$submitter->name.')');
|
may be replaced with:
| Code: |
/*Begin modified code*/
if ($file->submittedby'') {
if($submitter->fullname()"Administrator"){
$this->fileOutputBox (_DOWN_SUB_BY, $submitter->fullname().' ('.$submitter->name.')');
}
else{
$this->fileOutputBox (_DOWN_SUB_BY, $submitter->fullname());
}
};
/* End of modified code */
|
in order to prevent exposing Administrators user name.
Respectfully,
Post edited by: cfeodorov@yahoo.com, at: 2009/03/13 13:21
Post edited by: cfeodorov@yahoo.com, at: 2009/03/13 15:31
Post edited by: cfeodorov@yahoo.com, at: 2009/03/13 15:33
|