Changeset 839 for trunk/Application


Ignore:
Timestamp:
Sep 18, 2016, 6:41:49 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Use TinyMCE editor for news content.
Location:
trunk/Application
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/System.php

    r795 r839  
    2828  var $CommandLine;
    2929  var $PageHeaders;
     30  var $BaseView;
    3031
    3132  function __construct()
  • trunk/Application/UpdateTrace.php

    r831 r839  
    20312031  $Manager->Execute('UPDATE `Service` SET `InternetSpeedMin`=`InternetSpeedMin`*1000;');
    20322032  $Manager->Execute('UPDATE `Service` SET `InternetSpeedMax`=`InternetSpeedMax`*1000;');
     2033}
     2034
     2035function UpdateTo838($Manager)
     2036{
     2037  $Manager->Execute('ALTER TABLE `News` CHANGE `Date` `Date` DATETIME NULL, CHANGE `TargetDate` `TargetDate` DATETIME NULL;');
    20332038}
    20342039
     
    21262131      818 => array('Revision' => 824, 'Function' => 'UpdateTo824'),
    21272132      824 => array('Revision' => 831, 'Function' => 'UpdateTo831'),
     2133      831 => array('Revision' => 838, 'Function' => 'UpdateTo838'),
    21282134    ));
    21292135  }
  • trunk/Application/Version.php

    r834 r839  
    11<?php
    22
    3 $Revision = 834; // Subversion revision
    4 $DatabaseRevision = 831; // SQL structure revision
    5 $ReleaseTime = strtotime('2016-07-03');
     3$Revision = 838; // Subversion revision
     4$DatabaseRevision = 838; // SQL structure revision
     5$ReleaseTime = strtotime('2016-09-18');
Note: See TracChangeset for help on using the changeset viewer.