Forum ID
Verfasst: 13.03.2006 20:47
Moin
Kurze Frage: wo kann ich die ID der einzelnen Foren nachgucken?
Danke...
Kurze Frage: wo kann ich die ID der einzelnen Foren nachgucken?
Danke...
Code: Alles auswählen
###############################################
## Hack Title: Show Forum ID
## (A phpBB2 Quickie)
## Author: Nivisec (support@nivisec.com)
## http://www.nivisec.com
## Description: Displays the forum id in the
## forum management admin cp.
##
## Compatibility: 2.0.x
##
## Support: http://www.phpbbhacks.com/forums
## Copyright: ©2003 Billy Sauls
##
###############################################
#
#-----[ OPEN ]------------------------------------------
#
admin/admin_forums.php
#
#-----[ FIND ]------------------------------------------
#
'FORUM_NAME' => $forum_rows[$j]['forum_name'],
#
#-----[ AFTER, ADD ]------------------------------------------
#
'FORUM_ID' => $forum_id,
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/admin/forum_admin_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td class="row2"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}" target="_new">{catrow.forumrow.FORUM_NAME}</a></span><br /><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
#
#-----[ REPLACE WITH ]------------------------------------------
#
<td class="row2"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}" target="_new">{catrow.forumrow.FORUM_NAME}</a> (Forum ID# {catrow.forumrow.FORUM_ID})</span><br /><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM