Changeset 676
- Timestamp:
- Dec 29, 2013, 9:56:41 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/Export.php
r675 r676 256 256 257 257 function AddProgress($add = 2) { 258 if ( (file_exists($this->TempDir.'progress')) and (fopen($this->TempDir.'progress', 'w'))) {258 if (file_exists($this->TempDir.'progress')) { 259 259 $File = new FileStream(); 260 260 $File->OpenFile($this->TempDir.'progress'); … … 383 383 global $TranslationTree; 384 384 385 $this->LoadFilters();385 // $this->LoadFilters(); 386 386 387 387 $Output = ''; -
trunk/admin/index.php
r675 r676 104 104 global $System,$TranslationTree; 105 105 $Output = ''; 106 //foreach($TranslationTree as $Group)107 $Group = $TranslationTree[1];106 foreach($TranslationTree as $Group) 107 // $Group = $TranslationTree[1]; 108 108 { 109 109 … … 137 137 global $System,$TranslationTree; 138 138 $Output = ''; 139 //foreach($TranslationTree as $Group)140 $Group = $TranslationTree[1];139 foreach($TranslationTree as $Group) 140 // $Group = $TranslationTree[1]; 141 141 { 142 142 -
trunk/includes/Version.php
r675 r676 6 6 // and system will need database update. 7 7 8 $Revision = 67 5; // Subversion revision8 $Revision = 676; // Subversion revision 9 9 $DatabaseRevision = 666; // Database structure revision 10 10 $ReleaseTime = '2013-12-29';
Note:
See TracChangeset
for help on using the changeset viewer.