summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-12-27 19:19:21 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-12-27 19:19:21 +0000
commit3369292d9ffa7f89079ee090755970e684c658ce (patch)
tree7cb1a8e0adab16f98691ad0db4634e86d3259404
parentf16eed74ae62d939289420bf113e9b17694f984d (diff)
downloadampache-3369292d9ffa7f89079ee090755970e684c658ce.tar.gz
ampache-3369292d9ffa7f89079ee090755970e684c658ce.tar.bz2
ampache-3369292d9ffa7f89079ee090755970e684c658ce.zip
fixed wrap around problem on themes, thx sigger
-rwxr-xr-xdocs/CHANGELOG5
-rw-r--r--modules/init.php2
-rw-r--r--templates/style.inc1
-rw-r--r--themes/greyblock/templates/style.inc1
4 files changed, 6 insertions, 3 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG
index 962511bb..49e58bee 100755
--- a/docs/CHANGELOG
+++ b/docs/CHANGELOG
@@ -3,6 +3,11 @@
--------------------------------------------------------------------------
--------------------------------------------------------------------------
+ v.3.3.2-Beta1
+ - Fixed wrap-around text by removing float:left; on #content
+ (Thx Sigger)
+
+--------------------------------------------------------------------------
v.3.3.2-Alpha4 12/27/2005
- Fixed Registration system sort of. It still needs massive
improvement, but it works.. kinda (Thx SoundOfEmotion)
diff --git a/modules/init.php b/modules/init.php
index 2349ea7b..66927a5a 100644
--- a/modules/init.php
+++ b/modules/init.php
@@ -83,7 +83,7 @@ if (!$results['conf']['allow_stream_playback']) {
}
$results['conf']['web_path'] = $http_type . $_SERVER['HTTP_HOST'] . $results['conf']['web_path'];
-$results['conf']['version'] = '3.3.2-Alpha4';
+$results['conf']['version'] = '3.3.2-Beta1 (Build 001)';
$results['conf']['catalog_file_pattern']= 'mp3|mpc|m4p|m4a|mp4|aac|ogg|rm|wma|asf|flac|spx';
$results['libglue']['local_table'] = 'session';
$results['libglue']['local_sid'] = 'id';
diff --git a/templates/style.inc b/templates/style.inc
index 862c109c..0ef42f32 100644
--- a/templates/style.inc
+++ b/templates/style.inc
@@ -263,7 +263,6 @@ if (window.attachEvent) window.attachEvent("onload", sfHover);
#content
{
- float: left;
margin-left:0px;
}
/**
diff --git a/themes/greyblock/templates/style.inc b/themes/greyblock/templates/style.inc
index 730554c3..a79297c6 100644
--- a/themes/greyblock/templates/style.inc
+++ b/themes/greyblock/templates/style.inc
@@ -263,7 +263,6 @@ if (window.attachEvent) window.attachEvent("onload", sfHover);
#content
{
- float: left;
margin-left:0px;
}
/**