Changeset 1094 for trunk/components
- Timestamp:
- 2008-09-15 03:54:35 (4 months ago)
- Files:
-
- trunk/components/migrationService.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/components/migrationService.js
r1084 r1094 62 62 63 63 let lastVersion = Preferences.getExt('version', '0'); 64 if (0 == DTA.compareVersion( lastVersion)) {64 if (0 == DTA.compareVersion(DTA.BASE_VERSION, lastVersion)) { 65 65 return; 66 66 } … … 75 75 .createInstance(Components.interfaces.nsIDialogParamBlock); 76 76 params.SetNumberStrings(1); 77 params.SetString(0, DTA. VERSION);77 params.SetString(0, DTA.BASE_VERSION); 78 78 let mediator = {}; 79 79 Components.utils.import('resource://dta/mediator.jsm', mediator);
