<!-- fid_adlr: search - list-list --> <?php /* #18535 - record listings - AP */ ?> <?php if (!isset($this->indexStart)) $this->indexStart = 0; ?> <?php $i = $this->indexStart; ?> <?php $listStart = $this->results->getStartRecord() + $i - $this->indexStart; ?> <ol class="record-list" start="<?=$listStart?>"> <?php foreach ($this->results->getResults() as $current): ?> <?php $recordNumber = $this->results->getStartRecord() + $i - $this->indexStart; ?> <li id="result<?=$i++ ?>" class="result<?=$current->supportsAjaxStatus()?' ajaxItem':''?>"> <?php if (isset($this->showCheckboxes) && $this->showCheckboxes): ?> <?=$this->record($current)->getCheckbox('', 'search-cart-form', $recordNumber)?> <?php endif; ?> <?php /* fid_adlr: remove record number refs #15646 - GG */ /* <div class="record-number"> <?=$recordNumber ?> </div> */ ?> <?=$this->record($current)->getSearchResult('list')?> </li> <?php endforeach; ?> </ol> <!-- fid_adlr: search - list-list - END -->