Example #1
0
</table>

<table id="secondary">
<tr valign="top">
  <th><label for="category" accesskey="c">Pa<span class="accesskey">c</span>kage</label></th>
  <td style="white-space: nowrap">Return bugs for these <b>packages</b></td>
  <td><select id="category" name="package_name[]" multiple="multiple" size="6"><?php 
show_types($package_name, 2);
?>
</select></td>
</tr>
<tr valign="top">
  <th>&nbsp;</th>
  <td style="white-space: nowrap">Return bugs <b>NOT</b> for these <b>packages</b></td>
  <td><select name="package_nname[]" multiple="multiple" size="6"><?php 
show_types($package_nname, 2);
?>
</select></td>
</tr>
<tr valign="top">
  <th>OS</th>
  <td style="white-space: nowrap">Return bugs with <b>operating system</b></td>
  <td><input type="text" name="php_os" value="<?php 
echo clean($php_os);
?>
" /></td>
</tr>
<tr valign="top">
  <th>Version</th>
  <td style="white-space: nowrap">Return bugs reported with <b>Package version</b></td>
  <td><input type="text" name="packagever" value="<?php 
Example #2
0
if (!empty($_REQUEST['package'])) {
    echo '<input type="hidden" name="in[package_name]" id="in[package_name]" value="';
    echo $clean_package . '" />' . $clean_package;
    if ($_REQUEST['package'] == 'Bug System') {
        echo '<p><strong>WARNING: You are saying the <em>package';
        echo ' affected</em> is the &quot;Bug System.&quot; This';
        echo ' category is <em>only</em> for telling us about problems';
        echo ' that the ' . SITE_BIG . ' website\'s bug user interface is having. If';
        echo ' your bug is about a ' . SITE_BIG . ' package or other aspect of the';
        echo ' website, please hit the back button and actually read that';
        echo ' page so you can properly categorize your bug.</strong></p>';
        echo '<input type="hidden" name="in[package_version]" value="" />';
    }
} else {
    echo '<select name="in[package_name]" id="in[package_name]">' . "\n";
    show_types(null, 0, $clean_package);
    echo '</select>';
}
?>

  </td>
 </tr>
 <tr>
  <th class="form-label_left">
   Bug Type:
  </th>
  <td class="form-input">
   <?php 
if (isset($_REQUEST['bug_type'])) {
    $selectedBt = $_REQUEST['bug_type'];
} else {
Example #3
0
File: bug.php Project: stof/pearweb
    echo $id;
    ?>
" />
       <input type="hidden" name="edit" value="<?php 
    echo $edit;
    ?>
" />
       <input type="submit" value="Submit" />
      </td>
     </tr>
     <tr>
      <th>Package:</th>
      <td colspan="3">
       <select name="in[package_name]">
        <?php 
    show_types(isset($_POST['in']) && isset($_POST['in']['package_name']) ? $_POST['in']['package_name'] : '', 0, $bug['package_name']);
    ?>
       </select>
      </td>
     </tr>
     <tr>
      <th>Bug Type:</th>
       <td colspan="3">
        <select name="in[bug_type]">
            <?php 
    show_type_options($bug['bug_type']);
    ?>
        </select>
      </td>
     </tr>
     <tr>