Skip to content

Commit 1c41366

Browse files
committed
Revert "Replace <small> with <span style"
This reverts commit 12f04c0.
1 parent 12f04c0 commit 1c41366

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

archive/2008.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,10 +363,10 @@
363363
<a href="http://phpconference.com/">Register now!</a>
364364
</p>
365365
<p>
366-
<span style="font-size:0.8em">* Confirmation with your company's letter head</span>
366+
<small>* Confirmation with your company's letter head</small>
367367
<br>
368368

369-
<span style="font-size:0.8em">** With Student ID. Limited seating available</span>
369+
<small>** With Student ID. Limited seating available</small>
370370
</p>
371371
</div>
372372

download-docs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200

201201
// Sizes required to be printed out (URL parameter or preferred language)
202202
if (isset($_GET['sizes']) || $preflang) {
203-
echo "<br><span style="font-size:0.8em">Size: $fileinfo[1]Kb<br>Date: $fileinfo[2]</span>";
203+
echo "<br><small>Size: $fileinfo[1]Kb<br>Date: $fileinfo[2]</small>";
204204
}
205205
}
206206

git-php.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ class="max" value="<?php if (isset($_POST['email'])) echo clean($_POST['email'])
377377
<td><input type="checkbox" name="guidelines" value="1">Check the box if you agree.</td>
378378
</tr>
379379
<tr>
380-
<th class="subr">User ID:<br> <span style="font-size:0.8em">(single word, lower case)</span></th>
380+
<th class="subr">User ID:<br> <small>(single word, lower case)</small></th>
381381
<td><input type="text" size="10" name="id"
382382
class="max" value="<?php if (isset($_POST['id'])) echo clean($_POST['id']);?>"></td>
383383
</tr>

include/get-download.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ EOT;
5959
</strong>
6060
<?php
6161
if ($size) {
62-
echo '<span style="font-size:0.8em">(' . number_format($size, 0, '.', ',') . ' bytes)</span>';
62+
echo '<small>(' . number_format($size, 0, '.', ',') . ' bytes)</small>';
6363
}
6464
?>
6565
</span>

include/shared-manual.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ function manual_notes($notes) {
156156
'&amp;redirect=' . $_SERVER['BASE_HREF'];
157157
$addnotesnippet = make_link(
158158
$addnotelink,
159-
"<img src='/images/[email protected]' alt='add a note' width='12' height='12'> <span style="font-size:0.8em">add a note</span>"
159+
"<img src='/images/[email protected]' alt='add a note' width='12' height='12'> <small>add a note</small>"
160160
);
161161

162162
$num_notes = count($notes);

mailing-lists.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function output_lists_table($mailing_lists)
314314
"<th>Newsgroup</th><th>Normal</th><th>Digest</th></tr>\n";
315315
} else {
316316
echo '<tr align="center">';
317-
echo '<td align="left"><strong>' . $listinfo[1] . '</strong><br><span style="font-size:0.8em">'. $listinfo[2] . '</span></td>';
317+
echo '<td align="left"><strong>' . $listinfo[1] . '</strong><br><small>'. $listinfo[2] . '</small></td>';
318318
echo '<td>' . ($listinfo[3] ? 'yes' : 'no') . '</td>';
319319

320320
// Let the list name defined with a string, if the

manual/add-note.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273

274274

275275
<section id="whatnottoenter" class='clearfix'>
276-
<h3>Thou shall not enter! <span style="font-size:0.8em">(No, really, don't)</span></h3>
276+
<h3>Thou shall not enter! <small>(No, really, don't)</small></h3>
277277
<div class='columns'>
278278
<ul>
279279
<li><strong>Bug reports &amp; Missing documentation</strong>

submit-event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@
240240
<th class="subr">Email</th>
241241
<td>
242242
<input type="text" name="email" size="40" maxlength="128" class="max" value="<?php echo htmlentities($_POST['email'], ENT_QUOTES | ENT_IGNORE, 'UTF-8')?>"><br>
243-
<span style="font-size:0.8em">This email address is only used to contact you about the listing, it will not displayed along with the listing.</span>
243+
<small>This email address is only used to contact you about the listing, it will not displayed along with the listing.</small>
244244
</td>
245245
</tr>
246246
<tr>

0 commit comments

Comments
 (0)