1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 19:24:01 +02:00

Forum locking now implemented + some updates for future functionality

git-svn-id: file:///svn/phpbb/trunk@746 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-07-24 17:51:21 +00:00
parent 28aaa8f6b0
commit cfa724410a
2 changed files with 46 additions and 18 deletions

View File

@@ -13,6 +13,8 @@ define(TEMPLATE_CONFIG, TRUE);
// by the template
//
$smilies_url = "images/smiles";
$images['icon_quote'] = "images/icon_quote.gif";
$images['icon_edit'] = "images/icon_edit.gif";
$images['icon_search'] = "images/icon_search.gif";
@@ -37,8 +39,15 @@ $images['folder_sticky_new'] = "images/folder_sticky_new.gif";
$images['folder_announce'] = "images/folder_announce.gif";
$images['folder_announce_new'] = "images/folder_announce_new.gif";
$images['topic_new'] = "templates/PSO/images/post.gif";
$images['topic_reply'] = "templates/PSO/images/reply.gif";
$images['topic_locked'] = "templates/PSO/images/reply-locked.gif";
$images['post_new'] = "templates/PSO/images/post.gif";
$images['post_locked'] = "templates/PSO/images/post-locked.gif";
$images['reply_new'] = "templates/PSO/images/reply.gif";
$images['reply_locked'] = "templates/PSO/images/reply-locked.gif";
//
// Default theme to use (can be blank if
// themes aren't supported by this template)
//
$template_default_theme = "PSO-Default";
?>