Skip to content

Commit 107d945

Browse files
author
Jani Taskinen
committed
- Remove crap
1 parent e5c4900 commit 107d945

File tree

5 files changed

+2
-6
lines changed

5 files changed

+2
-6
lines changed

templates/addpatch.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
response_header('Add Patch :: ' . clean($package_name));
3-
show_bugs_menu(clean($package_name));
43
?>
54
<h2>Add a Patch to <a href="<?php echo $bug_id; ?>">Bug #<?php echo $bug_id; ?></a></h2>
65
<ul>
@@ -40,7 +39,7 @@
4039
Patch Name
4140
</th>
4241
<td class="form-input">
43-
<input type="text" maxlength="80" name="name" value="<?php echo clean($name); ?>" /><br />
42+
<input type="text" maxlength="80" size="40" name="name" value="<?php echo clean($name); ?>" /><br />
4443
<small>The patch name must be shorter than 80 characters and it must only contain alpha-numeric characters, dots, underscores or hyphens.</small>
4544
</td>
4645
</tr>

templates/patchadded.php

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
$p = clean($package_name);
33
$b = clean($bug_id);
44
response_header('Patch Added :: ' . $p . ' :: Bug #' . $b);
5-
show_bugs_menu($p);
65
?>
76
<h1>Patch Added to Bug #<?php echo $b; ?>, Package <?php echo $p; ?></h1>
87
<?php

templates/patchdiff.php

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
response_header('Patch :: ' . clean($package) . ' :: Bug #' . clean($bug));
3-
show_bugs_menu(clean($package));
43
?>
54
<h1>Patch version <?php echo format_date($revision) ?> for <?php echo clean($package) ?> Bug #<?php
65
echo clean($bug) ?></h1>

templates/patchdisplay.php

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22
response_header('Patch :: ' . clean($package_name) . ' :: Bug #' . $bug_id);
3-
show_bugs_menu(clean($package_name));
43
?>
54
<h1>Patch version <?php echo format_date($revision) ?> for <?php echo clean($package_name); ?> Bug #<?php
65
echo $bug_id; ?></h1>

templates/patchform.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<p class="cell_note">
77
The patch name must be shorter than 80 characters and it must only contain alpha-numeric characters, dots, underscores or hyphens.
88
</p>
9-
<input type="text" maxlength="80" name="in[patchname]" value="<?php echo clean($patchname) ?>" /><br />
9+
<input type="text" maxlength="80" size="40" name="in[patchname]" value="<?php echo clean($patchname) ?>" /><br />
1010
</td>
1111
</tr>
1212
<tr>

0 commit comments

Comments
 (0)