diff --git a/install.xml b/install.xml
index 0ab54530..5eff6e23 100644
--- a/install.xml
+++ b/install.xml
@@ -58,7 +58,7 @@ Es hat diverse Boxen, die über das ACP an- / abgeschaltet und eingestellt werde
- 1.0.0RC3
+ 1.0.0
easy
@@ -88,6 +88,26 @@ Es hat diverse Boxen, die über das ACP an- / abgeschaltet und eingestellt werde
Installations-Anleitung
+
+ 2008-09-09
+ 1.0.1
+
+ Release of version 1.0.1.
+
+
+ Release der Version 1.0.1.
+
+
+
+ 2008-09-08
+ 1.0.0
+
+ Release of version 1.
+
+
+ Release der Version 1.
+
+
2008-08-31
1.0.0RC3
diff --git a/root/install_portal/install.php b/root/install_portal/install.php
index 6358543b..123de970 100644
--- a/root/install_portal/install.php
+++ b/root/install_portal/install.php
@@ -10,7 +10,7 @@
*
*/
-$current_version = '1.0.0RC3';
+$current_version = '1.0.1';
// If only checking version, exit.
if( defined('IN_PHPBB') )
@@ -39,7 +39,7 @@ $page_title = 'Board3portal v' . $current_version;
if( $user->data['is_registered'] && $auth->acl_get('a_board') )
{
- $version_array = array('0.1.0', '0.2.0', '0.2.1', '0.2.2', '0.3.0', '1.0.0RC1', '1.0.0RC2', 'p3p1.2.2', 'p3p1.2.1', 'p3p1.2.0', 'p3p1.1.0b');
+ $version_array = array('0.1.0', '0.2.0', '0.2.1', '0.2.2', '0.3.0', '1.0.0RC1', '1.0.0RC2', '1.0.0RC3', '1.0.0', 'p3p1.2.2', 'p3p1.2.1', 'p3p1.2.0', 'p3p1.1.0b');
$old_version = 0;
$phpbb3portal = false;
diff --git a/root/install_portal/schemas/update_schema.php b/root/install_portal/schemas/update_schema.php
index 0d1c7826..ae22ee8a 100644
--- a/root/install_portal/schemas/update_schema.php
+++ b/root/install_portal/schemas/update_schema.php
@@ -68,7 +68,7 @@ $sql_update['1.0.0RC2'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_leaders_ext', '0');",
);
-$sql_update['1.0.0RC3'] = array(
+$sql_update['1.0.0'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_show_announcements_replies_views', '1');",
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_show_news_replies_views', '1');",
);
diff --git a/root/portal/includes/functions.php b/root/portal/includes/functions.php
index 66f34b20..537190d0 100644
--- a/root/portal/includes/functions.php
+++ b/root/portal/includes/functions.php
@@ -276,7 +276,7 @@ function phpbb_fetch_posts($forum_from, $permissions, $number_of_posts, $text_le
// Pull attachment data
$sql2 = 'SELECT *
FROM ' . ATTACHMENTS_TABLE . '
- WHERE `post_msg_id` = '. $row['post_id'] .'
+ WHERE post_msg_id = '. $row['post_id'] .'
AND in_message = 0
ORDER BY filetime DESC';