Code Duplication    Length = 13-13 lines in 3 locations

admin/about2.php 3 locations

@@ 135-147 (lines=13) @@
132
133
echo '</table>';
134
// Warning
135
if ($versioninfo->getInfo('warning') != '') {
136
    echo "<br />\n";
137
    echo "<table width='100%' cellspacing=1 cellpadding=3 border=0 class = outer>";
138
    echo '<tr>';
139
    echo "<td class='bg3' align='left'><b>" . _MI_SF_MODULE_DISCLAIMER . '</b></td>';
140
    echo '</tr>';
141
142
    echo '<tr>';
143
    echo "<td class='even' align='left'>" . $versioninfo->getInfo('warning') . '</td>';
144
    echo '</tr>';
145
146
    echo '</table>';
147
}
148
// Author's note
149
if ($versioninfo->getInfo('author_word') != '') {
150
    echo "<br />\n";
@@ 149-161 (lines=13) @@
146
    echo '</table>';
147
}
148
// Author's note
149
if ($versioninfo->getInfo('author_word') != '') {
150
    echo "<br />\n";
151
    echo "<table width='100%' cellspacing=1 cellpadding=3 border=0 class = outer>";
152
    echo '<tr>';
153
    echo "<td class='bg3' align='left'><b>" . _MI_SF_AUTHOR_WORD . '</b></td>';
154
    echo '</tr>';
155
156
    echo '<tr>';
157
    echo "<td class='even' align='left'>" . $versioninfo->getInfo('author_word') . '</td>';
158
    echo '</tr>';
159
160
    echo '</table>';
161
}
162
163
// Version History
164
if ($versioninfo->getInfo('version_history') != '') {
@@ 164-176 (lines=13) @@
161
}
162
163
// Version History
164
if ($versioninfo->getInfo('version_history') != '') {
165
    echo "<br />\n";
166
    echo "<table width='100%' cellspacing=1 cellpadding=3 border=0 class = outer>";
167
    echo '<tr>';
168
    echo "<td class='bg3' align='left'><b>" . _MI_SF_VERSION_HISTORY . '</b></td>';
169
    echo '</tr>';
170
171
    echo '<tr>';
172
    echo "<td class='even' align='left'>" . $versioninfo->getInfo('version_history') . '</td>';
173
    echo '</tr>';
174
175
    echo '</table>';
176
}
177
178
echo '<br />';
179
//$modfooter = sf_modFooter();