Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1454 → Rev 1455

/trunk/includes/classes/OIDplusMenuUtils.class.php
131,7 → 131,7
$max_ent++;
if ($max_ent > 1000) { // TODO: we need to find a solution for this!!!
// Note: We cannot use id=oidplus:system, otherwise the lazy-load-tree breaks
$children[] = array('id' => '', 'icon' => '', 'text' => _L('There are too many child items to display'), 'indent' => 0);
$children[] = array('id' => '', 'icon' => '', 'text' => _L('List truncated due to too many subordinate elements'), 'indent' => 0);
break;
}
 
/trunk/plugins/viathinksoft/database/pdo/OIDplusDatabaseConnectionPDO.class.php
40,7 → 40,7
private $transactions_supported = false;
 
/**
* @var
* @var array
*/
private $prepare_cache = [];
 
/trunk/plugins/viathinksoft/language/dede/messages.xml
8030,10 → 8030,10
</message>
<message>
<source><![CDATA[
There are too many child items to display
List truncated due to too many subordinate elements
]]></source>
<target><![CDATA[
Auflistung nicht möglich, da es zu viele Unterobjekte gibt
Liste gekürzt, da es zu viele untergeordnete Objekte gibt
]]></target>
</message>
<message>
/trunk/plugins/viathinksoft/publicPages/000_objects/OIDplusPagePublicObjects.class.php
1249,7 → 1249,7
while ($row = $res->fetch_object()) {
$max_ent++;
if ($max_ent > 1000) { // TODO: we need to find a solution for this!!!
$menu_entry = array('id' => '', 'icon' => '', 'text' => _L('There are too many child items to display'), 'indent' => 0);
$menu_entry = array('id' => '', 'icon' => '', 'text' => _L('List truncated due to too many subordinate elements'), 'indent' => 0);
$menu_entries[] = $menu_entry;
$stufen[] = $stufe;
break;
1597,7 → 1597,7
$output .= '<p>'._L('%1 items are hidden. Please <a %2>log in</a> to see them.',$items_hidden,OIDplus::gui()->link('oidplus:login')).'</p>';
}
 
if ($max_ent > 1000) $output .= '<p>'._L('There are too many child items to display') . '</p>'; // TODO: we need to find a solution for this!!!
if ($max_ent > 1000) $output .= '<p><b>'._L('List truncated due to too many subordinate elements') . '</b></p>'; // TODO: we need to find a solution for this!!!
 
return $output;
}