2 * systemConfigUpdated.tpl
4 * Copyright (c) 2003-2008 John Willinsky
5 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
7 * Display confirmation of successful configuration update.
8 * If necessary, will display new config file contents if config file could not be written.
10 * $Id: systemConfigUpdated.tpl,v 1.1.1.1 2008/10/20 21:27:08 tylerl Exp $
13 {assign var="pageTitle" value="admin.systemConfiguration"}
14 {assign var="currentUrl" value="{url op="editSystemConfig"}"
15 {include file="common/header.tpl"}
20 {if $writeConfigFailed}
21 <p>{translate key="admin.overwriteConfigFileInstructions"}</p>
22 {elseif $displayConfigContents}
23 <p>{translate key="admin.displayConfigFileInstructions"}</p>
25 <p>{translate key="admin.configFileUpdatedInstructions"}</p>
28 {if $writeConfigFailed || $displayConfigContents}
30 <h4>{translate key="admin.contentsOfConfigFile"}</h4>
31 <textarea name="config" cols="80" rows="20" class="textArea">{$configFileContents|escape}</textarea>
36 <a class="action" href="{url op="systemInfo"}">{translate key="admin.systemInformation"}</a>
38 {include file="common/footer.tpl"}