Changeset 234


Ignore:
Timestamp:
Jul 2, 2009, 10:51:47 PM (15 years ago)
Author:
maron
Message:

V knihovně dbc zobrazování více informací při chybě, doplnění počtu a struktury dbc pro verzi 3.0.3 a 2.4.3, smazání nepotřebných sloupců se strukturou dbc souborů v tabulce group, změna načítání indexu textů z exportu podle verze

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/export/export.php

    r231 r234  
    300300
    301301        foreach($Group['Items'] as $GroupItem)
    302               if($GroupItem['DBCColumnIndex'] != '')
    303                 $Line[$GroupItem['DBCColumnIndex']] = $DbRow[$GroupItem['Column']];
     302              if(GetDBCColumnIndex($Setting['Version'],$Group['DBCFileName'],$GroupItem['Column']) != '')
     303                $Line[GetDBCColumnIndex($Setting['Version'],$Group['DBCFileName'],$GroupItem['Column'])] = $DbRow[$GroupItem['Column']];
    304304          //print_r($Line);
    305305          }
  • trunk/includes/dbc.php

    r150 r234  
    3434     
    3535    if(strlen($this->Format) != $this->FieldCount)
    36       die(FIELD_COUNT_NOT_MATCH.' Počet v souboru:'.$this->FieldCount);
     36      die(FIELD_COUNT_NOT_MATCH.' Počet v souboru:'.$this->FieldCount.' Počet v struktuře: '.strlen($Format));
    3737     
    3838    $this->GenerateOffsetTable($Format);
Note: See TracChangeset for help on using the changeset viewer.