chrissy6930
Karma: 27
|
Re:Remove images from download summary - 2010/07/28 05:31
in v-classes/remositoryFileInfoHTML.php
to adjust the links you would need to modify $usersubmitstuff $deletestuff $thumbupdatestuff please bear in mind that only users with editing permissions will see those links - including admins
for the display of the published state you could try to either comment out or delete
| Code: | if ($this->remUser->isAdmin()) $this->fileOutputBox(_DOWN_PUB, ($file->published ? _YES : _NO));
|
or in remository.html.php function showFileDetails you could comment out or delete
| Code: | if ($dodisplay AND $remUser->isAdmin()) $this->fileOutputBox(_DOWN_SITE_PUB, ($file->published == 1 ? _DOWN_SITE_YES : _DOWN_SITE_NO), false);
|
|