Thanks for answer,
But:
1. It is not logical to replace the all code, because I have no images in not updated version.
2. All code is identical in both of sites, except code of images.
Please, check the codes, because I don't see any difference.
Code of updated version:
if($this->doOrdering){?>
<td class="order">
<?php if($this->manage){ ?>
<span><?php echo $this->pagination->orderUpIcon( $i, $this->order->reverse XOR ( $row->ordering >= @$this->rows[$i-1]->ordering ), $this->order->orderUp, 'Move Up',$this->order->ordering ); ?></span>
<span><?php echo $this->pagination->orderDownIcon( $i, $a, $this->order->reverse XOR ( $row->ordering <= @$this->rows[$i+1]->ordering ), $this->order->orderDown, 'Move Down' ,$this->order->ordering); ?></span>
<input type="text" name="order[]" size="5" <?php if(!$this->order->ordering) echo 'disabled="disabled"'?> value="<?php echo $row->ordering; ?>" class="text_area" style="text-align: center" />
<?php }else{ echo $row->ordering; } ?>
</td>
<?php }?>
Code of not updated version:
if($this->doOrdering){?>
<td class="order">
<?php if($this->manage){ ?>
<span><?php echo $this->pagination->orderUpIcon( $i, $this->order->reverse XOR ( $row->ordering >= @$this->rows[$i-1]->ordering ), $this->order->orderUp, 'Move Up',$this->order->ordering ); ?></span>
<span><?php echo $this->pagination->orderDownIcon( $i, $a, $this->order->reverse XOR ( $row->ordering <= @$this->rows[$i+1]->ordering ), $this->order->orderDown, 'Move Down' ,$this->order->ordering); ?></span>
<input type="text" name="order[]" size="5" <?php if(!$this->order->ordering) echo 'disabled="disabled"'?> value="<?php echo $row->ordering; ?>" class="text_area" style="text-align: center" />
<?php }else{ echo $row->ordering; } ?>
</td>
<?php }?>
Do you see a different? May be some mistake in the code of updated version?
Thanks for help,
Vero