Index: trunk/admin/install.php =================================================================== diff -u -r167 -r175 --- trunk/admin/install.php (.../install.php) (revision 167) +++ trunk/admin/install.php (.../install.php) (revision 175) @@ -481,7 +481,7 @@ $file = str_replace("inportal_upgrade_v", "", $file); $file = str_replace(".sql", "", $file); - if ($file != '' && !strstr($file, 'changelog')) { + if ($file != '' && !strstr($file, 'changelog') && !strstr($file, 'readme')) { $sql = "SELECT count(*) AS count FROM ".$g_TablePrefix."Modules WHERE Name = '".$rs->fields['Name']."' AND Version = '$file'"; $rs1 = $ado->Execute($sql); @@ -540,7 +540,7 @@ $file = str_replace("inportal_upgrade_v", "", $file); $file = str_replace(".sql", "", $file); - if ($file != '' && !strstr($file, 'changelog')) { + if ($file != '' && !strstr($file, 'changelog') && !strstr($file, 'readme')) { $tmp1 = str_replace(".", "", $file); if ($tmp1 > $tmp2) { $new_version = $file; @@ -947,7 +947,7 @@ $file = str_replace("inportal_upgrade_v", "", $file); $file = str_replace(".sql", "", $file); - if ($file != '' && !strstr($file, 'changelog')) { + if ($file != '' && !strstr($file, 'changelog') && !strstr($file, 'readme')) { if ($p == '') { $p = 'in-portal'; } @@ -1452,7 +1452,7 @@ $file = str_replace("inportal_upgrade_v", "", $file); $file = str_replace(".sql", "", $file); - if ($file != '' && !strstr($file, 'changelog')) { + if ($file != '' && !strstr($file, 'changelog') && !strstr($file, 'readme')) { $tmp1 = str_replace(".", "", $file); if ($tmp1 > $tmp2) { $new_version = $file; Index: trunk/admin/install/install_lib.php =================================================================== diff -u -r137 -r175 --- trunk/admin/install/install_lib.php (.../install_lib.php) (revision 137) +++ trunk/admin/install/install_lib.php (.../install_lib.php) (revision 175) @@ -24,7 +24,7 @@ $file = str_replace("inportal_upgrade_v", "", $file); $file = str_replace(".sql", "", $file); - if ($file != '' && !strstr($file, 'changelog')) { + if ($file != '' && !strstr($file, 'changelog') && !strstr($file, 'readme')) { if (str_replace('.', '', $file) > str_replace('.', '', $version)) { $version = $file; } Index: trunk/admin/install/upgrades/readme_1_0_5.txt =================================================================== diff -u --- trunk/admin/install/upgrades/readme_1_0_5.txt (revision 0) +++ trunk/admin/install/upgrades/readme_1_0_5.txt (revision 175) @@ -0,0 +1,13 @@ +In-portal Features: +New section - Advanced View +New user permission - Read-only admin +Primary category selection for items +Default theme - search text box cleared after search +Ability to enter debug mode by uploading debug.php + +In-portal Bug fixes: +Outgoing email format +Front-end search, output of results +User list sorting & filtering +Installation and operation under PHP Safe Mode +User custom fields not saving values \ No newline at end of file