// Init:
$dbCount = 0;
$out = '';
- $LOISmode = $this->listOnlyInSingleTableMode && !$this->table;
+ $listOnlyInSingleTableMode = $this->listOnlyInSingleTableMode && !$this->table;
// If the count query returned any number of records, we perform the real query, selecting records.
if ($this->totalItems) {
- if ($LOISmode) {
+ if ($listOnlyInSingleTableMode) {
$dbCount = $this->totalItems;
} else {
// set the showLimit to the number of records when outputting as CSV
if ($dbCount) {
// Half line is drawn between tables:
- if (!$LOISmode) {
+ if (!$listOnlyInSingleTableMode) {
$theData = Array();
if (!$this->table && !$rowlist) {
$theData[$titleCol] = '<img src="clear.gif" width="'.($GLOBALS['SOBE']->MOD_SETTINGS['bigControlPanel']?'230':'350').'" height="1" alt="" />';
// CSH:
$theData[$titleCol].= t3lib_BEfunc::cshItem($table,'',$this->backPath,'',FALSE,'margin-bottom:0px; white-space: normal;');
- if ($LOISmode) {
+ if ($listOnlyInSingleTableMode) {
$out.='
<tr>
<td class="c-headLineTable" style="width:95%;">'.$theData[$titleCol].'</td>
$out.=$this->addelement(1,$theUpIcon,$theData,' class="c-headLineTable"','');
}
- If (!$LOISmode) {
+ If (!$listOnlyInSingleTableMode) {
// Fixing a order table for sortby tables
$this->currentTable = array();
$currentIdList = array();
<!--
DB listing of elements: "'.htmlspecialchars($table).'"
-->
- <table border="0" cellpadding="0" cellspacing="0" class="typo3-dblist'.($LOISmode?' typo3-dblist-overview':'').'">
+ <table border="0" cellpadding="0" cellspacing="0" class="typo3-dblist'.($listOnlyInSingleTableMode?' typo3-dblist-overview':'').'">
'.$out.'
</table>';
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/class.db_list_extra.inc']);
}
-?>
+?>
\ No newline at end of file