Changeset 692


Ignore:
Timestamp:
Jan 2, 2014, 7:23:19 PM (11 years ago)
Author:
maron
Message:
  • Added: Set all recommended export to generation if needed
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/cmdmpqexport.php

    r681 r692  
    8888
    8989if(array_key_exists('needgeneration', $_GET)) {
     90 foreach ($System->Config['Web']['RecommendedExport'] as $ExportId) {
    9091  $Export = new Export($System);
    91   $Export->Id = $_GET['needgeneration'];
     92  $Export->Id = $ExportId;
    9293  $Output .= $Export->Init();                   
    9394  if ($Export->NeedGeneration()) {
     
    106107  $Output = str_replace('<br />','
    107108',$Output);
     109 }
    108110}
    109111
  • trunk/includes/Version.php

    r691 r692  
    66// and system will need database update.
    77
    8 $Revision = 691; // Subversion revision
     8$Revision = 692; // Subversion revision
    99$DatabaseRevision = 678; // Database structure revision
    1010$ReleaseTime = '2014-01-02';
Note: See TracChangeset for help on using the changeset viewer.