diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-04-28 12:49:44 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-04-28 12:49:44 +0000 |
| commit | 34fcc7dbe12b823667edfe5a35b0d2dfcea2af37 (patch) | |
| tree | 4095518177ecb7b75a38d09e2d8c9eed49232fa7 /phpBB/adm/style | |
| parent | 1b065fb74afedf2513d5dab4726516f8778cdf9d (diff) | |
| download | forums-34fcc7dbe12b823667edfe5a35b0d2dfcea2af37.tar forums-34fcc7dbe12b823667edfe5a35b0d2dfcea2af37.tar.gz forums-34fcc7dbe12b823667edfe5a35b0d2dfcea2af37.tar.bz2 forums-34fcc7dbe12b823667edfe5a35b0d2dfcea2af37.tar.xz forums-34fcc7dbe12b823667edfe5a35b0d2dfcea2af37.zip | |
graham, sorry for this but i had to... ;)
- utilize common.php in installer (we only need to change one location then)
- use $user->lang instead of $lang to be able to use language template vars and having consistant namings
git-svn-id: file:///svn/phpbb/trunk@5855 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style')
| -rwxr-xr-x | phpBB/adm/style/install_install.html | 72 |
1 files changed, 42 insertions, 30 deletions
diff --git a/phpBB/adm/style/install_install.html b/phpBB/adm/style/install_install.html index efa52fa94b..4b94023226 100755 --- a/phpBB/adm/style/install_install.html +++ b/phpBB/adm/style/install_install.html @@ -5,41 +5,53 @@ <h2>{TITLE}</h2> {BODY} -<!-- BEGIN checks --> - <!-- IF checks.S_LEGEND --> - <!-- IF not checks.S_FIRST_ROW --> - </fieldset> - <!-- ENDIF --> - <fieldset> - <legend>{checks.LEGEND}</legend> - <!-- IF checks.LEGEND_EXPLAIN --><p>{checks.LEGEND_EXPLAIN}</p><!-- ENDIF --> - <!-- ELSE --> - - <dl> - <dt>{checks.TITLE}:</label><!-- IF checks.S_EXPLAIN --><br /><span>{checks.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> - <dd>{checks.RESULT}</dd> - </dl> - <!-- ENDIF --> -<!-- END checks --> -</fieldset> +<!-- IF .checks --> + <fieldset> -<!-- BEGIN options --> - <!-- IF options.S_LEGEND --> - <!-- IF not options.S_FIRST_ROW --> + <!-- BEGIN checks --> + <!-- IF checks.S_LEGEND --> + <!-- IF not checks.S_FIRST_ROW --> </fieldset> + + <fieldset> + <!-- ENDIF --> + <legend>{checks.LEGEND}</legend> + <!-- IF checks.LEGEND_EXPLAIN --><p>{checks.LEGEND_EXPLAIN}</p><!-- ENDIF --> + <!-- ELSE --> + + <dl> + <dt>{checks.TITLE}:</label><!-- IF checks.S_EXPLAIN --><br /><span>{checks.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> + <dd>{checks.RESULT}</dd> + </dl> <!-- ENDIF --> - <fieldset> - <legend>{options.LEGEND}</legend> - <!-- ELSE --> + <!-- END checks --> - <dl> - <dt><label for="{options.KEY}">{options.TITLE}:</label><!-- IF options.S_EXPLAIN --><br /><span>{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> - <dd>{options.CONTENT}</dd> - </dl> + </fieldset> +<!-- ENDIF --> - <!-- ENDIF --> -<!-- END options --> -</fieldset> +<!-- IF .options --> + <fieldset> + + <!-- BEGIN options --> + <!-- IF options.S_LEGEND --> + <!-- IF not options.S_FIRST_ROW --> + </fieldset> + + <fieldset> + <!-- ENDIF --> + <legend>{options.LEGEND}</legend> + <!-- ELSE --> + + <dl> + <dt><label for="{options.KEY}">{options.TITLE}:</label><!-- IF options.S_EXPLAIN --><br /><span>{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> + <dd>{options.CONTENT}</dd> + </dl> + + <!-- ENDIF --> + <!-- END options --> + + </fieldset> +<!-- ENDIF --> <!-- IF S_SHOW_DOWNLOAD --> <fieldset> |
