many bug fixes
This commit is contained in:
parent
caf9b3089e
commit
ae2acfffd8
12 changed files with 177 additions and 34 deletions
|
|
@ -1,3 +1,23 @@
|
|||
6.5.2
|
||||
- Fixed a caching bug in the collaboration system that wouldn't allow you to
|
||||
view other posts if you were in threaded mode.
|
||||
- fix [ 1160969 ] 6.5.x plainblack.com - Second edit of Post fails
|
||||
- fix [ 1161571 ] 6.5.0, pagination on view forum always returns page 1
|
||||
- fix [ 1163780 ] Pagination not working for Thread in Nested view
|
||||
- fix [ 1163761 ] session from 10.0.0.2 in create.sql
|
||||
- fix [ 1160971 ] 6.5.x - Use Preview setting ignored in collaboration
|
||||
systems
|
||||
- fix [ 1159395 ] Rating causes Problem with request
|
||||
- fix [ 1150169 ] archive posts
|
||||
- fix [ 1149830 ] Collaboration System privileges not correct
|
||||
- fix [ 1157197 ] content filters shows only word to be replaced
|
||||
- fix [ 1088201 ] Deleted discussion thread negatively offsets reply count
|
||||
- fix [ 1162056 ] No default template for Data Form with no tabs
|
||||
- fix [ 1029170 ] Forum: Sorting thread by date
|
||||
- Fixed a sort by last reply crash bug.
|
||||
- fix [ 1160947 ] Make page printable does not work
|
||||
|
||||
|
||||
6.5.1
|
||||
- Fixed a bug in the lineage tree that caused funky ranks to be created when
|
||||
pasting assets.
|
||||
|
|
|
|||
|
|
@ -2733,8 +2733,6 @@ CREATE TABLE userLoginLog (
|
|||
--
|
||||
|
||||
|
||||
INSERT INTO userLoginLog VALUES ('3','success',1109989498,'10.0.0.2','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050225 Firefox/1.0.1');
|
||||
INSERT INTO userLoginLog VALUES ('3','success',1109989768,'10.0.0.2','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050225 Firefox/1.0.1');
|
||||
|
||||
--
|
||||
-- Table structure for table `userProfileCategory`
|
||||
|
|
@ -2869,11 +2867,6 @@ CREATE TABLE userSession (
|
|||
--
|
||||
|
||||
|
||||
INSERT INTO userSession VALUES ('82WNZSBtGILYo',1109992028,1109988428,0,'66.196.91.102','1');
|
||||
INSERT INTO userSession VALUES ('19y/YcYUDLoHw',1109991892,1109988292,0,'68.142.251.125','1');
|
||||
INSERT INTO userSession VALUES ('24jJHPg295S56',1109990899,1109987299,0,'68.142.250.47','1');
|
||||
INSERT INTO userSession VALUES ('32eqpqD/QNpew',1109993461,1109989861,0,'10.0.0.2','3');
|
||||
INSERT INTO userSession VALUES ('68RJ6HMaKCbp6',1110383374,1110379774,0,'','1');
|
||||
|
||||
--
|
||||
-- Table structure for table `userSessionScratch`
|
||||
|
|
|
|||
104
docs/upgrades/upgrade_6.5.1-6.5.2.pl
Normal file
104
docs/upgrades/upgrade_6.5.1-6.5.2.pl
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use lib "../../lib";
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::Asset;
|
||||
|
||||
my $configFile;
|
||||
my $quiet;
|
||||
|
||||
GetOptions(
|
||||
'configFile=s'=>\$configFile,
|
||||
'quiet'=>\$quiet
|
||||
);
|
||||
|
||||
WebGUI::Session::open("../..",$configFile);
|
||||
|
||||
#--------------------------------------------
|
||||
print "\tAdding data form template\n" unless ($quiet);
|
||||
my $template = <<STOP;
|
||||
<a name="<tmpl_var assetId>"></a>
|
||||
<tmpl_if session.var.adminOn>
|
||||
<p><tmpl_var controls></p>
|
||||
</tmpl_if>
|
||||
<tmpl_if displayTitle>
|
||||
<h1><tmpl_var title></h1>
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_if error_loop>
|
||||
<ul>
|
||||
<tmpl_loop error_loop>
|
||||
<li><b><tmpl_var error.message></b>
|
||||
</tmpl_loop>
|
||||
</ul>
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_if description>
|
||||
<tmpl_var description><p />
|
||||
</tmpl_if>
|
||||
|
||||
<tmpl_if canEdit>
|
||||
<a href="<tmpl_var entryList.url>"><tmpl_var entryList.label></a>
|
||||
· <a href="<tmpl_var export.tab.url>"><tmpl_var export.tab.label></a>
|
||||
<tmpl_if entryId>
|
||||
· <a href="<tmpl_var delete.url>"><tmpl_var delete.label></a>
|
||||
</tmpl_if>
|
||||
<tmpl_if session.var.adminOn>
|
||||
· <a href="<tmpl_var addField.url>"><tmpl_var addField.label></a>
|
||||
· <a href="<tmpl_var addTab.url>"><tmpl_var addTab.label></a>
|
||||
</tmpl_if>
|
||||
<p />
|
||||
</tmpl_if>
|
||||
<table>
|
||||
<tmpl_loop field_loop>
|
||||
<tmpl_unless field.isHidden>
|
||||
<tr>
|
||||
<td class="formDescription" valign="top">
|
||||
<tmpl_if session.var.adminOn>
|
||||
<tmpl_if canEdit>
|
||||
<tmpl_var field.controls>
|
||||
</tmpl_if>
|
||||
</tmpl_if>
|
||||
<tmpl_var field.label>
|
||||
</td>
|
||||
<td class="tableData" valign="top">
|
||||
<tmpl_if field.isDisplayed>
|
||||
<tmpl_var field.value>
|
||||
<tmpl_else>
|
||||
<tmpl_var field.form>
|
||||
</tmpl_if>
|
||||
<tmpl_if field.isRequired>*</tmpl_if>
|
||||
<span class="formSubtext">
|
||||
<br />
|
||||
<tmpl_var field.subtext>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tmpl_unless>
|
||||
</tmpl_loop>
|
||||
</table>
|
||||
<br>
|
||||
<tmpl_var form.save>
|
||||
<tmpl_var form.end>
|
||||
STOP
|
||||
my $importNode = WebGUI::Asset->getImportNode;
|
||||
$importNode->addChild({
|
||||
className=>"WebGUI::Asset::Template",
|
||||
template=>$template,
|
||||
namespace=>"DataForm",
|
||||
title=>'Default DataForm',
|
||||
menuTitle=>'Default DataForm',
|
||||
ownerUserId=>'3',
|
||||
groupIdView=>'7',
|
||||
groupIdEdit=>'4',
|
||||
isHidden=>1
|
||||
}, 'PBtmpl0000000000000141'
|
||||
);
|
||||
|
||||
|
||||
|
||||
WebGUI::Session::close();
|
||||
|
||||
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
insert into webguiVersion values ('6.5.2','upgrade',unix_timestamp());
|
||||
|
||||
|
||||
update template set template = '<a name=\"<tmpl_var assetId>\"></a> <h1><tmpl_var newheader></h1>\r\n\r\n<tmpl_var form.header>\r\n<table>\r\n\r\n<tmpl_if user.isVisitor>\r\n <tr><td><tmpl_var visitorName.label></td><td><tmpl_var visitorName.form></td></tr>\r\n</tmpl_if>\r\n\r\n<tr><td><tmpl_var subject.label></td><td><tmpl_var title.form></td></tr>\r\n<tr><td><tmpl_var message.label></td><td><tmpl_var content.form></td></tr>\r\n\r\n<tmpl_if newisNewMessage>\r\n <tmpl_unless user.isVisitor>\r\n <tr><td><tmpl_var subscribe.label></td><td><tmpl_var subscribe.form></td></tr>\r\n </tmpl_unless>\r\n <tmpl_if user.isModerator>\r\n <tr><td><tmpl_var lock.label></td><td><tmpl_var lock.form></td></tr>\r\n <tr><td><tmpl_var sticky.label></td><td><tmpl_var sticky.form></td></tr>\r\n </tmpl_if>\r\n</tmpl_if>\r\n\r\n<tr><td><tmpl_var contentType.label></td><td><tmpl_var contentType.form></td></tr>\r\n<tr><td></td><td><tmpl_if usePreview><tmpl_var form.preview></tmpl_if><tmpl_var form.submit></td></tr>\r\n\r\n</table>\r\n<tmpl_var form.footer>\r\n\r\n<p>\r\n<tmpl_var full>\r\n</p>' where assetId='PBtmpl0000000000000029';
|
||||
update asset set endDate=32472169200 where endDate=9223372036854775807;
|
||||
alter table asset change endDate endDate bigint(20) not null default 32472169200;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue