Changeset 4580
- Timestamp:
- 07/27/07 23:19:15 (1 year ago)
- Files:
-
- modules/branches/2.2 (modified) (1 prop)
- modules/branches/2.2/miscapps/functions.inc.php (modified) (2 diffs)
- modules/branches/2.2/miscapps/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.2
- Property svnmerge-integrated changed from /modules/branches/2.1:1-2166,2289,2414,2419,2424,2430,2449,2458,2462,2476 /modules/branches/2.3:1-3256,4102,4227,4232,4251,4312,4390,4570,4574 to /modules/branches/2.1:1-2166,2289,2414,2419,2424,2430,2449,2458,2462,2476 /modules/branches/2.3:1-3256,4102,4227,4232,4251,4312,4390,4570,4574,4579
modules/branches/2.2/miscapps/functions.inc.php
r3363 r4580 72 72 // we want to get the ext from featurecodes 73 73 $fc = new featurecode('miscapps', 'miscapp_'.$row['miscapps_id']); 74 $row['ext'] = $fc->get Code();74 $row['ext'] = $fc->getDefault(); 75 75 $row['enabled'] = $fc->isEnabled(); 76 76 … … 126 126 $fc = new featurecode('miscapps', 'miscapp_'.$miscapps_id); 127 127 $fc->setDescription($description); 128 $fc->set Code($ext);128 $fc->setDefault($ext, true); 129 129 $fc->update(); 130 130 } 131 ?> 131 132 132 ?>modules/branches/2.2/miscapps/module.xml
r3487 r4580 2 2 <rawname>miscapps</rawname> 3 3 <name>Misc Applications</name> 4 <version>0.2 </version>4 <version>0.2.0.1</version> 5 5 <type>setup</type> 6 6 <category>Internal Options & Configuration</category> … … 9 9 </description> 10 10 <changelog> 11 *0.2.0.1* #1902 miscapp always sets/pulls default code now regardless of custom override in featurecodes 11 12 *0.2* Fix bug with adding new apps 12 13 </changelog>
