|
@@ -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);
|