Changeset 3128:3863cfaaae8d for inc/dbschema/upgrade.php
- Timestamp:
- 10/25/15 21:41:59 (10 years ago)
- Branch:
- default
- Parents:
- 3126:19af5f62e940 (diff), 3127:6f6550a613ea (diff)
 Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
 Use the (diff) links above to see all the changes relative to each parent.
- Files:
- 
          - 2 edited
 
 - 
          inc/dbschema/upgrade.php (modified) (2 diffs)
- 
          inc/dbschema/upgrade.php (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
        inc/dbschema/upgrade.phpr3126 r3128 432 432 } 433 433 434 if (version_compare($version,'2.8 ','<'))434 if (version_compare($version,'2.8.1','<=')) 435 435 { 436 436 # switch from jQuery 1.11.1 to 1.11.2 … … 455 455 } 456 456 457 if (version_compare($version,'2.8. 1','<'))457 if (version_compare($version,'2.8.2','<=')) 458 458 { 459 459 # Update flie exclusion upload regex 
- 
        inc/dbschema/upgrade.phpr3127 r3128 467 467 } 468 468 469 if (version_compare($version,'2.9','<')) 470 { 471 # Some new settings should be initialized, prepare db queries 472 $strReq = 'INSERT INTO '.$core->prefix.'setting'. 473 ' (setting_id,setting_ns,setting_value,setting_type,setting_label)'. 474 ' VALUES(\'%s\',\'system\',\'%s\',\'integer\',\'%s\')'; 475 $core->con->execute(sprintf($strReq,'media_video_width','400','Media video insertion width')); 476 $core->con->execute(sprintf($strReq,'media_video_height','300','Media video insertion height')); 477 } 478 469 479 $core->setVersion('core',DC_VERSION); 470 480 $core->blogDefaults(); 
Note: See TracChangeset
          for help on using the changeset viewer.
      