Skip to content

Commit

Permalink
Merge pull request #79 from UTRS/too-much-text
Browse files Browse the repository at this point in the history
Fix: Too much text issue #75
  • Loading branch information
dqwiki authored Jun 25, 2016
2 parents 4b1349e + a5dd2f2 commit 7fbe49c
Show file tree
Hide file tree
Showing 57 changed files with 171 additions and 15,944 deletions.
9 changes: 8 additions & 1 deletion public_html/appeal.php
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,11 @@ function hideContextWindow() {
<div class="comments">
<?php echo str_replace("\r\n", " ", $log->getSmallHTML($higherPerms)); ?>
</div>
<form action="?id=<?php echo $_GET['id']; ?>&action=comment" method="post"><input type="text" name="comment" style="width:75%;"><input type="submit" style="width:20%" value="Quick Comment"></form>
<form action="?id=<?php echo $_GET['id']; ?>&action=comment" method="post">
<?php //500 is fine here as it's only a quick comment. Anything bigger should be full comment. --DQ ?>
<input type="text" name="comment" id="quickComment" maxlength="500" style="width:75%;"><input type="submit" style="width:20%" value="Quick Comment" id="quickSubmit">
<p id="sizequickComment"></p>
</form>

<?php if (verifyAccess($GLOBALS['ADMIN'])) {?>
<h3>Ban Management</h3>
Expand All @@ -837,6 +841,7 @@ function hideContextWindow() {
</div>
</div>


<?php
}
elseif ($appeal->getStatus() == Appeal::$STATUS_INVALID) {
Expand All @@ -845,6 +850,8 @@ function hideContextWindow() {
else {
displayError("You may not view appeals that have not been email verified.");
}
?>
<?php
skinFooter();


Expand Down
7 changes: 5 additions & 2 deletions public_html/comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@
<td><?php echo $appeal->getCommonName(); ?></td>
</tr>
<tr>
<td colspan="2" align=left><textarea name="comment" rows="15" cols="60"></textarea></td>
<td colspan="2" align=left>
<textarea name="comment" id="comment" rows="15" cols="60" maxlength="10000"></textarea>
<span id="sizecomment"></span>
</td>
</tr>
<tr>
<td colspan="2" align=left><input type="submit" value="Submit comment"></td>
<td colspan="2" align=left><input type="submit" id="submit" value="Submit comment"></td>
</tr>
</table>
</form>
Expand Down
22 changes: 0 additions & 22 deletions public_html/includes/Peachy/.gitattributes

This file was deleted.

12 changes: 0 additions & 12 deletions public_html/includes/Peachy/.scrutinizer.yml

This file was deleted.

21 changes: 0 additions & 21 deletions public_html/includes/Peachy/.travis.yml

This file was deleted.

13 changes: 0 additions & 13 deletions public_html/includes/Peachy/Configs/UTRSBot.cfg

This file was deleted.

2 changes: 0 additions & 2 deletions public_html/includes/Peachy/Configs/redirector.cfg

This file was deleted.

2 changes: 0 additions & 2 deletions public_html/includes/Peachy/Configs/scriptdefault.cfg

This file was deleted.

Loading

0 comments on commit 7fbe49c

Please sign in to comment.