From aa8e72322605ce0bb2a3042fa65e183c04cef06b Mon Sep 17 00:00:00 2001
From: joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Date: Wed, 2 May 2007 07:52:19 +0000
Subject: [PATCH] web commit by JoshTriplett: Fix bad if nesting.

---
 doc/templates.mdwn | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/doc/templates.mdwn b/doc/templates.mdwn
index 5bdcbaab6..bd8b2b6fe 100644
--- a/doc/templates.mdwn
+++ b/doc/templates.mdwn
@@ -1,13 +1,12 @@
-[[if test="enabled(template)" then="""
-This wiki has templates **enabled**.
+[[if test="enabled(template)"
+then="This wiki has templates **enabled**."
+else="This wiki has templates **disabled**."
+]]
 
-[[if test="enabled(inline)" then="""
+[[if test="enabled(template) and enabled(inline)" then="""
 These templates are available for inclusion onto other pages in this
 wiki:
 
 [[inline pages="templates/* and !*/discussion" feeds=no archive=yes
 sort=title template=titlepage]]
 """]]
-"""
-else="This wiki has templates **disabled**."
-]]
-- 
2.39.5