Changeset 676


Ignore:
Timestamp:
Dec 29, 2013, 9:56:41 PM (11 years ago)
Author:
maron
Message:
  • Fixed: don't write progress in lua
  • Added: script version end and merge to all texts
Location:
trunk
Files:
3 edited

Legend:

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

    r675 r676  
    256256
    257257  function AddProgress($add = 2) {
    258     if ((file_exists($this->TempDir.'progress')) and (fopen($this->TempDir.'progress', 'w'))) { 
     258    if (file_exists($this->TempDir.'progress')) { 
    259259      $File = new FileStream();
    260260      $File->OpenFile($this->TempDir.'progress');
     
    383383    global $TranslationTree;
    384384 
    385     $this->LoadFilters();
     385  //  $this->LoadFilters();
    386386
    387387    $Output = '';
  • trunk/admin/index.php

    r675 r676  
    104104  global $System,$TranslationTree;
    105105  $Output = '';
    106  // foreach($TranslationTree as $Group) 
    107   $Group = $TranslationTree[1];
     106  foreach($TranslationTree as $Group) 
     107 // $Group = $TranslationTree[1];
    108108    {
    109109   
     
    137137  global $System,$TranslationTree;
    138138  $Output = '';
    139 //  foreach($TranslationTree as $Group) 
    140   $Group = $TranslationTree[1];
     139  foreach($TranslationTree as $Group) 
     140//  $Group = $TranslationTree[1];
    141141  {
    142142   
  • trunk/includes/Version.php

    r675 r676  
    66// and system will need database update.
    77
    8 $Revision = 675; // Subversion revision
     8$Revision = 676; // Subversion revision
    99$DatabaseRevision = 666; // Database structure revision
    1010$ReleaseTime = '2013-12-29';
Note: See TracChangeset for help on using the changeset viewer.