Skip to content

Commit

Permalink
adjust new issue form
Browse files Browse the repository at this point in the history
  • Loading branch information
jsavell committed Oct 2, 2015
1 parent 16005f3 commit ad1295a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ajax_forms.php
Expand Up @@ -625,7 +625,7 @@
<tr>
<td><label>CC myself:</label></td>
<td>
<input type='checkbox' id='ccCreator' name='ccCreator' class='changeInput' />
<input type='checkbox' id='ccCreator' name='ccCreator' class='changeInput' checked />
<span id='span_error_ccCreator' class='error smallDarkRedText'></span>
</td>
</tr>
Expand Down Expand Up @@ -659,10 +659,10 @@
<td><label>Applies to:&nbsp;&nbsp;<span class='bigDarkRedText'>*</span></label></td>
<td>
<div>
<input type="checkbox" class="issueResources" id="organizationID" name="organizationID" value="<?php echo $organization->organizationID;?>" /> <label for="allResources">Applies to all resources of <?php echo $organization->name; ?></label>
<input type="checkbox" class="issueResources" id="organizationID" name="organizationID" value="<?php echo $organization->organizationID;?>" /> <label for="allResources">Applies to all <?php echo $organization->name; ?> resources.</label>
</div>
<div>
<input type="checkbox" class="issueResources" id="otherResources" /><label for="otherResources"> Applies to other Resources</label>
<input type="checkbox" class="issueResources" id="otherResources" /><label for="otherResources"> Applies to selected <?php echo $organization->name; ?> resources.</label>
</div>
<select multiple id="resourceIDs" name="resourceIDs[]">
<?php
Expand All @@ -680,7 +680,7 @@

<p> Send me a reminder every
<select name="issue[reminderInterval]">
<?php for ($i = 1; $i <= 31; $i++) echo "<option>{$i}</option>"; ?>
<?php for ($i = 1; $i <= 31; $i++) echo "<option".(($i==7) ? ' selected':'').">{$i}</option>"; ?>
</select> day(s)
</p>

Expand Down

0 comments on commit ad1295a

Please sign in to comment.