Update of /cvsroot/phpbt/phpbt/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3853/templates/default
Modified Files:
buglist.html
Log Message:
Fixes for Edit Query and Mass Update
Index: buglist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- buglist.html 24 Sep 2005 21:53:43 -0000 1.17
+++ buglist.html 27 Sep 2005 19:49:42 -0000 1.18
@@ -57,20 +57,7 @@
</div>
<?php } ?>
<div align="left">
- <a href="query.php?op=edit<?php
- $paramstr = '';
- foreach ($_GET as $k => $v) {
- $$k = $v;
- if ($k == 'op') continue;
- if (is_array($v)) {
- foreach ($v as $value) {
- $paramstr .= "&{$k}[]=$value";
- }
- } else {
- $paramstr .= "&$k=$v";
- }
- }
- echo $paramstr; ?>"><?php echo translate("Edit this query"); ?></a>
+ <a href="query.php?op=edit"><?php echo translate("Edit this query"); ?></a>
</div>
<?php if ($mass_update) { ?>
<hr>
|