Legend:
- Unmodified
- Added
- Removed
-
base.php
r30 r31 10 10 { 11 11 global $Database, $Config; 12 13 echo($Column.','.$ColumnValue.' '); 12 14 13 15 if(!CheckPermission('Read', $List['Id'])) … … 22 24 foreach($List['Items'] as $Item) 23 25 { 24 if( $Item['VisibleInList'] == 1)26 if(($Item['VisibleInList'] == 1) and ($Item['Name'] != $Column)) 25 27 $Output .= '<th><a href="?OrderColumn='.$Item['Name'].'">'.$Item['TextBefore'].'</a></th>'; 26 28 } … … 71 73 foreach($List['Items'] as $Index => $Item) 72 74 { 73 if( $Item['VisibleInList'] == 1)75 if(($Item['VisibleInList'] == 1) and ($Item['Name'] != $Column)) 74 76 { 75 77 $ItemDefinition = array('Name' => $Index, 'Value' => $DbRow[$Index], 'SourceTable' => $List['Id'], 'SourceItemId' => $DbRow[$List['IdName']], 'Type' => $Item['Type']);
Note:
See TracChangeset
for help on using the changeset viewer.