Fixed [ 1266285 ] 6.7.1 - UserProfile Fields Time error

This commit is contained in:
Len Kranendonk 2005-08-24 22:28:19 +00:00
parent 967984aac6
commit 320235bfec
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,9 @@
- fix [ 1268605 ] field type selection broken (midellaq)
- fix [ 1267548 ] can't add metadata field (midellaq)
- fix [ 1265788 ] SyndicatedContent *not working* in 6.7.x
- fix [ 1266285 ] 6.7.1 - UserProfile Fields Time error (Len Kranendonk)
=======
- fix [ 1245765 ] Missing 'page not found' crashes settings
- fix [ 1263934 ] 6.6.5 Import Scripts Asset URLs
- fix [ 1260760 ] Default endDate in asset table too high for FreeBSD
@ -16,6 +19,7 @@
- fix [ 1248040 ] plainblack forum search not showing dates
- fix [ 1265771 ] assets that were formerly packages are still on packageList
- fix [ 1177447 ] deployPackage does not retain content pos. (mwilson)
>>>>>>> 1.450
6.7.1
- fix [ 1251608 ] can't login

View file

@ -21,6 +21,8 @@ WebGUI::Session::open("../..",$configFile);
WebGUI::Session::refreshUserInfo(3);
WebGUI::SQL->write("insert into webguiVersion values (".quote($toVersion).",'upgrade',".time().")");
WebGUI::SQL->write("update DataForm_field set type=".quote('TimeField')." where type=".quote('time'));
WebGUI::SQL->write("update userProfileField set dataType=".quote('TimeField')." where dataType=".quote('time'));
fixSpelling();
fixCSTemplate();