ravenlp 15 years ago
parent
commit
d75749027c
3 changed files with 6 additions and 4 deletions
  1. 2 0
      admin/css/style.css
  2. 2 2
      admin/themes/admin/install.htm
  3. 2 2
      install.php

+ 2 - 0
admin/css/style.css View File

@@ -50,6 +50,8 @@ body{ background: #e0e0e0; text-align:center; font-family:"Trebuchet Ms", Verdan
50 50
 	
51 51
 .box{ background:#fff url(images/bg-box.png) center top repeat-y; width:600px;}
52 52
 .footer-box{background:#fff url(images/bg-foot-box.png) center top no-repeat;}	
53
+.install_box{padding:20px;}
54
+.install_box a{ text-decoration:underline;}
53 55
 
54 56
 .box h3{float:left; color:#444444; font-weight:bold; padding:5px 10px 0 0;}
55 57
 .box p{ margin:2px auto auto 15px;}

+ 2 - 2
admin/themes/admin/install.htm View File

@@ -156,8 +156,8 @@
156 156
 			<div class="footer-box">&nbsp;</div>
157 157
 		</div>
158 158
 	{else}
159
-		<p><em>Finished!</em></p>
160
-		<p>Now you can <a href="login.php" class="inslnl">log in</a> with your <strong>username</strong> and <strong>password</strong></p>
159
+		<p class="install_box"><em>Finished!</em></p>
160
+		<p class="install_box">Now you can <a href="login.php" class="inslnl">log in</a> with your <strong>username</strong> and <strong>password</strong></p>
161 161
 	{/if}
162 162
 	</div>
163 163
 	<div id="foot">

+ 2 - 2
install.php View File

@@ -30,7 +30,7 @@ if($install->is_gelato_installed()){
30 30
 $install->data = $_POST;
31 31
 $install->check_form();
32 32
 $theme = new themes;
33
-$theme->set('version',version());
33
+$theme->set('version',util::version());
34 34
 $theme->set('showForm',$install->showForm);
35 35
 
36 36
 $theme->set('db_login',isset($install->data['db_login'])? $install->data['db_login'] : '');
@@ -41,7 +41,7 @@ $theme->set('email',isset($install->data['email'])?$install->data['email']:'');
41 41
 $theme->set('title',isset($install->data['title'])?$install->data['title']:'');
42 42
 $theme->set('description',isset($install->data['description'])?$install->data['description']:'');
43 43
 $theme->set('url_installation',isset($_SERVER['SCRIPT_URI'])?substr($_SERVER["SCRIPT_URI"], 0, -12):'');
44
-$theme->set('themes',getThemes());
44
+$theme->set('themes',util::getThemes());
45 45
 
46 46
 for($c=1;$c<=10;$c++)$errores[$c] = $install->mostrarerror($c);
47 47
 $theme->set('error',$errores);