Changeset 18238
- Timestamp:
- Jun 20, 2008, 9:41:11 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/pstamp/web/request.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pstamp/web/request.php
r17892 r18238 41 41 42 42 // Initialize the request variables that we depend upon 43 $rvar_project=" gpc1";43 $rvar_project="simtest"; 44 44 45 45 $rvar_user_tag=""; … … 231 231 $cmd .= " -project $rvar_project"; 232 232 233 if ( $making_stamps) {234 if ( !$rvar_user_tag) {233 if (!$rvar_user_tag) { 234 if ($making_stamps) { 235 235 throw new Exception('Stamp Name must be specified.'); 236 236 } 237 $cmd .= " -user_tag $rvar_user_tag"; 237 $cmd .= " -stamp_name temp_tag"; 238 } else { 239 $cmd .= " -stamp_name $rvar_user_tag"; 238 240 } 239 241 … … 292 294 throw new Exception("must specify Class ID with Image Type $rvar_img_type."); 293 295 } 294 $cmd .= " $rvar_class_id"; 296 if ($rvar_class_id = "all") { 297 $cmd .= " null"; 298 } else { 299 $cmd .= " $rvar_class_id"; 300 } 295 301 } 296 302 … … 488 494 <tr><td><b>Project:</b> </td> 489 495 <td><select name="project"> 490 <option>gpc1 496 <!-- <option>gpc1 --> 497 <option>simtest 491 498 </td> 492 499 </tr> … … 667 674 <?php 668 675 else: ?> 669 <td><input type=submit value="Get Status"></td> 676 <td><input type=submit value="Check Status"></td> 677 <!--- <td><input type=submit value="Cancel"></td> ---> 670 678 <?php 671 679 echo "<td><b>Request Id: $request_id";
Note:
See TracChangeset
for help on using the changeset viewer.
