From 519cff827f6fd95b7e5dc539faa589e47a57dea6 Mon Sep 17 00:00:00 2001 From: kenshiros Date: Sun, 7 Apr 2013 07:06:20 -0400 Subject: [PATCH] fix pools link on home page to point at site://pool and not site://pools --- ext/home/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/home/main.php b/ext/home/main.php index e8d5018f..2c585a1a 100644 --- a/ext/home/main.php +++ b/ext/home/main.php @@ -70,7 +70,7 @@ class Home extends Extension { } else { $main_links = '[url=site://post/list]Posts[/url] [url=site://comment/list]Comments[/url] [url=site://tags]Tags[/url]'; - if(class_exists("Pools")) {$main_links .= ' [url=site://pools]Pools[/url]';} + if(class_exists("Pools")) {$main_links .= ' [url=site://pool]Pools[/url]';} if(class_exists("Wiki")) {$main_links .= ' [url=site://wiki]Wiki[/url]';} $main_links .= ' [url=site://ext_doc]Documentation[/url]'; }