diff options
author | zottel <github@zottel.net> | 2012-05-25 21:05:42 +0200 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-05-25 21:05:42 +0200 |
commit | 36d6018c110fca190b720c5ff27883c2d4ed70c3 (patch) | |
tree | 93416482d64d3ad9f275986ce0d39c2024520d00 /view/install_checks.tpl | |
parent | 3aa516ccabc9bb09ae30ffa2d3657fba36699ea9 (diff) | |
parent | d1345e505406b1a1cdc3fc26a1734916c8abc89d (diff) | |
download | volse-hubzilla-36d6018c110fca190b720c5ff27883c2d4ed70c3.tar.gz volse-hubzilla-36d6018c110fca190b720c5ff27883c2d4ed70c3.tar.bz2 volse-hubzilla-36d6018c110fca190b720c5ff27883c2d4ed70c3.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'view/install_checks.tpl')
-rw-r--r-- | view/install_checks.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/install_checks.tpl b/view/install_checks.tpl index a1a75ade6..176611d4b 100644 --- a/view/install_checks.tpl +++ b/view/install_checks.tpl @@ -1,11 +1,11 @@ <h1>$title</h1> <h2>$pass</h2> -<form action="$baseurl/install" method="post"> +<form action="$baseurl/index.php?q=install" method="post"> <table> {{ for $checks as $check }} - <tr><td>$check.title </td><td><span class="icon s22 {{if $check.status}}on{{else}}off{{endif}}"></td><td>{{if $check.required}}(required){{endif}}</td></tr> + <tr><td>$check.title </td><td><span class="icon s22 {{if $check.status}}on{{else}}{{if$check.required}}off{{else}}yellow{{endif}}{{endif}}"></td><td>{{if $check.required}}(required){{endif}}</td></tr> {{if $check.help }} - <tr><td colspan="3">$check.help</td></tr> + <tr><td colspan="3"><blockquote>$check.help</blockquote></td></tr> {{endif}} {{ endfor }} </table> |