mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
* Separate the portion of get_db_info.html.php that displays the status of the var directory into a separate view var_dir_status.html.php * Change the processing to always generate the database information request screen unless there is an environment error, the var directory is not writable and the install was successful Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
26 lines
713 B
PHP
26 lines
713 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<html>
|
|
<head>
|
|
<title>Gallery 3 Installer</title>
|
|
<link rel="stylesheet" type="text/css" href="install.css"/>
|
|
</head>
|
|
<body>
|
|
<div id="outer">
|
|
<img src="../modules/gallery/images/gallery.png" />
|
|
<div id="inner">
|
|
<?= $content ?>
|
|
<?= empty($database_form) ? "" : $database_form ?>
|
|
</div>
|
|
<div id="footer">
|
|
<p>
|
|
<i>Did something go wrong? Try
|
|
the <a href="http://codex.gallery2.org/Gallery3:FAQ">FAQ</a>
|
|
or ask in
|
|
the <a href="http://gallery.menalto.com/forum">Gallery
|
|
forums</a>.</i>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|