Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1137 → Rev 1138

/trunk/plugins/viathinksoft/adminPages/400_oidinfo_export/OIDplusPageAdminOIDInfoExport.class.php
287,7 → 287,10
$count = 0;
$out['text'] .= '<div class="container box"><div id="suboid_table" class="table-responsive">';
$out['text'] .= '<table class="table table-bordered table-striped">';
$out['text'] .= '<thead>';
$out['text'] .= '<tr><th colspan="3">'._L('Actions').'</th><th>'._L('OID').'</th></tr>';
$out['text'] .= '</thead>';
$out['text'] .= '<tbody>';
 
$lookup_nonoid = array();
$row_lookup = array();
456,8 → 459,11
'</tr>';
}
}
$out['text'] .= '</tbody>';
if ($count == 0) {
$out['text'] .= '<tfoot>';
$out['text'] .= '<tr><td colspan="4">'._L('No missing OIDs found').'</td></tr>';
$out['text'] .= '</tfoot>';
}
$out['text'] .= '</table></div></div>';
} else {
581,7 → 587,10
$count = 0;
$out['text'] .= '<div class="container box"><div id="suboid_table" class="table-responsive">';
$out['text'] .= '<table class="table table-bordered table-striped">';
$out['text'] .= '<thead>';
$out['text'] .= '<tr><th colspan="4">'._L('Actions').'</th><th>'._L('OID').'</th></tr>';
$out['text'] .= '</thead>';
$out['text'] .= '<tbody>';
natsort($root['children']);
foreach ($root['children'] as $child_oid) {
if (!in_array($child_oid, $all_local_oids)) {
596,8 → 605,11
'</tr>';
}
}
$out['text'] .= '</tbody>';
if ($count == 0) {
$out['text'] .= '<tfoot>';
$out['text'] .= '<tr><td colspan="5">'._L('No extra OIDs found').'</td></tr>';
$out['text'] .= '</tfoot>';
}
$out['text'] .= '</table></div></div>';
} else {