| Anonymous | Login | Signup for a new account | 2013-05-25 05:46 WEST |
| Main | My View | View Issues | Change Log | Roadmap | Docs | My Account |
| Viewing Issue Advanced Details [ Jump to Notes ] | [ View Simple ] [ Issue History ] [ Print ] | ||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||
| 0000026 | [MyDNS-NG] Global | feature | always | 2009-07-07 18:31 | 2009-12-22 14:17 | ||
| Reporter | joethesysadmin | View Status | public | ||||
| Assigned To | tlamy | ||||||
| Priority | normal | Resolution | fixed | Platform | |||
| Status | resolved | OS | |||||
| Projection | none | OS Version | |||||
| ETA | none | Fixed in Version | Trunk | Product Version | 1.2.8.27 | ||
| Target Version | Product Build | ||||||
| Summary | 0000026: Cannot reactivate a zone when deactivated via admin.php | ||||||
| Description | When using the $soa_use_active functionality, the admin.php interface can mark zones (SOA) as inactive, but cannot mark them as active. | ||||||
| Steps To Reproduce | |||||||
| Additional Information |
Here's the fix. *** 2140,2148 **** <TR><TD class=soaFirstRow nowrap> <?php if ($soa_use_active) { ! echo "<INPUT class=activeBox type=checkbox name=\"active\" value=\"" ! . $soa_active_types[1] . "\""; ! if (gettrinary($values['active'])) { echo " checked"; }; echo " title=\"Uncheck this box to deactivate this zone.\"> "; } ?> --- 2141,2153 ---- <TR><TD class=soaFirstRow nowrap> <?php if ($soa_use_active) { ! echo "<INPUT class=activeBox type=checkbox name=\"active\" value=\""; ! if (isset($values['active']) && getbool($values['active'])) { ! echo $soa_active_types[1] . "\""; ! echo " checked"; ! } else { ! echo $soa_active_types[0] . "\""; ! } echo " title=\"Uncheck this box to deactivate this zone.\"> "; } ?> |
||||||
| Tags | patch | ||||||
| Attached Files |
|
||||||
|
|
|||||||
| Mantis 1.1.6[^] Copyright © 2000 - 2008 Mantis Group |