aboutsummaryrefslogtreecommitdiffstats
path: root/install/php5_apache_configuration.php
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2010-03-26 15:44:48 +0000
committerpatdenice <patdenice@piwigo.org>2010-03-26 15:44:48 +0000
commit29a08d54e79a49661ab17184b40c4ae872e1976e (patch)
tree1a723bb711b0d4fc62e13dce17cbea7677458ba3 /install/php5_apache_configuration.php
parent502689a319bacf98637d46a0d138f7722cdd000a (diff)
Fix php5 apache configuration with install.
Fix php5 apache configuration display. git-svn-id: http://piwigo.org/svn/trunk@5384 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/php5_apache_configuration.php')
-rw-r--r--install/php5_apache_configuration.php44
1 files changed, 38 insertions, 6 deletions
diff --git a/install/php5_apache_configuration.php b/install/php5_apache_configuration.php
index 6e8e284e6..3c117b0c6 100644
--- a/install/php5_apache_configuration.php
+++ b/install/php5_apache_configuration.php
@@ -79,12 +79,44 @@ function openPage()
<link rel="stylesheet" type="text/css" href="admin/themes/roma/default-colors.css">
<link rel="stylesheet" type="text/css" href="admin/themes/roma/theme.css">
<style type="text/css">
+body {
+ background:url("admin/themes/roma/images/bottom-left-bg.jpg") no-repeat fixed left bottom #111111;
+}
+
.content {
- width: 800px;
- min-height: 0px !important;
- margin: auto;
- padding: 25px;
- text-align: left;
+ background:url("admin/themes/roma/images/fillet.png") repeat-x scroll left top #222222;
+ width: 800px;
+ min-height: 0px !important;
+ margin: auto;
+ text-align: left;
+ padding: 25px;
+}
+
+#headbranch {
+ background:url("admin/themes/roma/images/top-left-bg.jpg") no-repeat scroll left top transparent;
+}
+
+#theHeader {
+ display: block;
+ background:url("admin/themes/roma/images/piwigo_logo_sombre_214x100.png") no-repeat scroll 245px top transparent;
+}
+
+.content h2 {
+ display:block;
+ font-size:28px;
+ height:104px;
+ width:54%;
+ color:#666666;
+ letter-spacing:-1px;
+ margin:0 30px 3px 20px;
+ overflow:hidden;
+ position:absolute;
+ right:0;
+ text-align:right;
+ top:0;
+ width:770px;
+ text-align:right;
+ text-transform:none;
}
table { margin: 0 0 15px 0; }
@@ -142,7 +174,7 @@ else
<td>'.l10n('Language').'</td>
<td>
<select name="language" onchange="document.location = \''.$script.'.php?language=\'+this.options[this.selectedIndex].value;">';
- foreach (get_languages('utf-8') as $code => $name)
+ foreach ($languages->fs_languages as $code => $name)
{
echo '
<option label="'.$name.'" value="'.$code.'" '.($code == $language ? 'selected="selected"' : '') .'>'.$name.'</option>';