aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/forums_display.php3
-rw-r--r--phpBB/index.php16
-rw-r--r--phpBB/templates/subSilver/images/phpbb_logo.jpgbin0 -> 7658 bytes
-rw-r--r--phpBB/templates/subSilver/images/phpbb_logo_bg.jpgbin0 -> 6415 bytes
-rw-r--r--phpBB/templates/subSilver/subSilver.css4
5 files changed, 11 insertions, 12 deletions
diff --git a/phpBB/includes/forums_display.php b/phpBB/includes/forums_display.php
index cc3bc64820..b6fa96a073 100644
--- a/phpBB/includes/forums_display.php
+++ b/phpBB/includes/forums_display.php
@@ -139,9 +139,6 @@ foreach ($forum_rows as $row)
}
}
- $l_moderator = 'Moderator: ';
- $moderators_list = '<a href="#">Ashe</a>';
-
$template->assign_block_vars('forumrow', array(
$forum_type_switch => TRUE,
diff --git a/phpBB/index.php b/phpBB/index.php
index b2dc88fcb7..5dd654e637 100644
--- a/phpBB/index.php
+++ b/phpBB/index.php
@@ -96,11 +96,11 @@ get_moderators($forum_moderators);
$cat_id = (!empty($_GET['c'])) ? intval($_GET['c']) : 0;
$root_id = $branch_root_id = $cat_id;
-$forum_rows = $subforums = $parent_forums = array();
+$forum_rows = $subforums = $nav_forums = array();
if ($cat_id == 0)
{
- $is_child = TRUE;
+ $is_nav = FALSE;
$total_posts = 0;
switch (SQL_LAYER)
{
@@ -120,7 +120,7 @@ if ($cat_id == 0)
}
else
{
- $is_child = FALSE;
+ $is_nav = TRUE;
if (!$acl->get_acl($cat_id, 'forum', 'list'))
{
@@ -174,13 +174,13 @@ while ($row = $db->sql_fetchrow($result))
if ($row['forum_id'] == $cat_id)
{
- $parent_forums[] = $row;
+ $nav_forums[] = $row;
$forum_rows[] = $row;
- $is_child = TRUE;
+ $is_nav = FALSE;
}
- elseif (!$is_child)
+ elseif ($is_nav)
{
- $parent_forums[] = $row;
+ $nav_forums[] = $row;
}
else
{
@@ -265,7 +265,7 @@ $template->assign_vars(array(
'U_MARK_READ' => "index.$phpEx$SID&amp;mark=forums")
);
-foreach ($parent_forums as $row)
+foreach ($nav_forums as $row)
{
if ($row['forum_status'] == ITEM_CATEGORY)
{
diff --git a/phpBB/templates/subSilver/images/phpbb_logo.jpg b/phpBB/templates/subSilver/images/phpbb_logo.jpg
new file mode 100644
index 0000000000..87b911d024
--- /dev/null
+++ b/phpBB/templates/subSilver/images/phpbb_logo.jpg
Binary files differ
diff --git a/phpBB/templates/subSilver/images/phpbb_logo_bg.jpg b/phpBB/templates/subSilver/images/phpbb_logo_bg.jpg
new file mode 100644
index 0000000000..358342bd6a
--- /dev/null
+++ b/phpBB/templates/subSilver/images/phpbb_logo_bg.jpg
Binary files differ
diff --git a/phpBB/templates/subSilver/subSilver.css b/phpBB/templates/subSilver/subSilver.css
index 125a72bec2..a6beb39a7f 100644
--- a/phpBB/templates/subSilver/subSilver.css
+++ b/phpBB/templates/subSilver/subSilver.css
@@ -109,9 +109,11 @@ a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: u
/* The register, login, search etc links at the top of the page */
-.mainmenu { font-size : 11px; color : #000000 }
+.mainmenu { font-size : 11px; color : black }
a.mainmenu { text-decoration: none; color : #006699; }
a.mainmenu:hover{ text-decoration: underline; color : #DD6900; }
+a.mainmenuw,a.mainmenuw:visited { text-decoration: none; color : white; }
+a.mainmenuw:hover{ text-decoration: underline; color : black; }
/* Forum category titles */