Subversion Repositories oidplus

Rev

Rev 1386 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1386 Rev 1387
Line 221... Line 221...
221
                                $tech_info_html .= '<h2>'._L('Technical information').'</h2>';
221
                                $tech_info_html .= '<h2>'._L('Technical information').'</h2>';
222
                                $tech_info_html .= '<div style="overflow:auto"><table border="0">';
222
                                $tech_info_html .= '<div style="overflow:auto"><table border="0">';
223
                                foreach ($tech_info as $key => $value) {
223
                                foreach ($tech_info as $key => $value) {
224
                                        $tech_info_html .= '<tr><td valign="top" style="white-space: nowrap;">'.$key.': </td><td><code>'.$value.'</code></td></tr>';
224
                                        $tech_info_html .= '<tr><td valign="top" style="white-space: nowrap;">'.$key.': </td><td><code>'.$value.'</code></td></tr>';
225
                                }
225
                                }
226
                                $tech_info_html .= '</table>';
226
                                $tech_info_html .= '</table></div>';
227
                        }
227
                        }
228
                        if ($this->cidr == 128) $tech_info_html .= _L('Single host address');
228
                        if ($this->cidr == 128) $tech_info_html .= _L('Single host address');
229
 
229
 
230
                        $content = $tech_info_html;
230
                        $content = $tech_info_html;
231
 
231