Skip to content

Commit

Permalink
ran this perl string to remove all ^Ms from code: perl -pi -e 'tr/\cm…
Browse files Browse the repository at this point in the history
…//d' *.php *.txt

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@310 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Jul 19, 2001
1 parent 2c2febf commit d86e2e9
Show file tree
Hide file tree
Showing 18 changed files with 6,875 additions and 6,866 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
@@ -1,5 +1,13 @@
Mantis

07.XX.2001 - 0.15.3

* Added wordwrap() to text formatting in email messages. Affects description and bugnotes.
* Added new function process_plain_password(). This, in conjunction with $g_@@@@@@@@@@@@@, allows you to bypass crypt().
* Added N/A to reproducibility
* Added PHP version check to admin_check.php3
* Added simple text search field to all view_all* pages

07.13.2001 - 0.15.2

* Fixed explode() error in view_all_unassign_bug.php3
Expand Down
92 changes: 46 additions & 46 deletions bug_file_upload_inc.php
@@ -1,47 +1,47 @@
<?
# Mantis - a php based bugtracking system
# Copyright (C) 2000, 2001 Kenzaburo Ito - kenito@300baud.org
# This program is distributed under the terms and conditions of the GPL
# See the files README and LICENSE for details
?>
<?
### This include file prints out the bug file upload form
### It POSTs to bug_file_add.php3
?>
<? ### Upload File Form BEGIN ?>
<? if ( $g_allow_file_upload==1 ) { ?>
<p>
<div align="center">
<form method="post" enctype="multipart/form-data" action="<? echo $g_bug_file_add ?>">
<table width="100%" bgcolor="<? echo $g_primary_border_color ?>" <? echo $g_primary_table_tags ?>>
<tr>
<td bgcolor="<? echo $g_white_color ?>">
<table width="100%" bgcolor="<? echo $g_white_color ?>">
<tr>
<td colspan="2" bgcolor="<? echo $g_table_title_color ?>">
<b><? echo $s_upload_file ?></b>
</td>
</tr>
<tr>
<td align="center" width="15%" bgcolor="<? echo $g_category_title_color ?>">
<b><? echo $s_select_file ?></b>
</td>
<td width="85%" bgcolor="<? echo $g_primary_color_light ?>">
<input type="hidden" name="f_id" value="<? echo $f_id ?>">
<input type="hidden" name="max_file_size" value="5000000">
<input name="f_file" type="file" size="70">
</td>
</tr>
<tr>
<td align="center" colspan="2">
<input type=submit value="<? echo $s_upload_file_button ?>">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</div>
<? } ?>
<?
# Mantis - a php based bugtracking system
# Copyright (C) 2000, 2001 Kenzaburo Ito - kenito@300baud.org
# This program is distributed under the terms and conditions of the GPL
# See the files README and LICENSE for details
?>
<?
### This include file prints out the bug file upload form
### It POSTs to bug_file_add.php3
?>
<? ### Upload File Form BEGIN ?>
<? if ( $g_allow_file_upload==1 ) { ?>
<p>
<div align="center">
<form method="post" enctype="multipart/form-data" action="<? echo $g_bug_file_add ?>">
<table width="100%" bgcolor="<? echo $g_primary_border_color ?>" <? echo $g_primary_table_tags ?>>
<tr>
<td bgcolor="<? echo $g_white_color ?>">
<table width="100%" bgcolor="<? echo $g_white_color ?>">
<tr>
<td colspan="2" bgcolor="<? echo $g_table_title_color ?>">
<b><? echo $s_upload_file ?></b>
</td>
</tr>
<tr>
<td align="center" width="15%" bgcolor="<? echo $g_category_title_color ?>">
<b><? echo $s_select_file ?></b>
</td>
<td width="85%" bgcolor="<? echo $g_primary_color_light ?>">
<input type="hidden" name="f_id" value="<? echo $f_id ?>">
<input type="hidden" name="max_file_size" value="5000000">
<input name="f_file" type="file" size="70">
</td>
</tr>
<tr>
<td align="center" colspan="2">
<input type=submit value="<? echo $s_upload_file_button ?>">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</div>
<? } ?>
<? ### Upload File Form END ?>

0 comments on commit d86e2e9

Please sign in to comment.