Code Duplication    Length = 13-13 lines in 3 locations

admin/about2.php 3 locations

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