Changeset 8653
- Timestamp:
- 01/22/10 18:56:28 (3 years ago)
- Files:
-
- modules/branches/2.7/core/install.php (modified) (1 diff)
- modules/branches/2.7/core/module.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.7/core/install.php
r8572 r8653 566 566 } 567 567 568 // END of trunks migration code569 568 outn(_("Checking if privacy manager options exists..")); 570 569 $check = $db->query('SELECT pmmaxretries FROM incoming'); 571 570 if(DB::IsError($check)){ 572 $db->query('alter table incoming add pmmaxretries varchar(2), add pmminlength varchar(2);'); 573 outn(_("Adding privacy manager options..")); 571 $result = $db->query('alter table incoming add pmmaxretries varchar(2), add pmminlength varchar(2);'); 572 if(DB::IsError($result)) { 573 die_freepbx($result->getDebugInfo().'fatal error adding fields to incoming table'); 574 } else { 575 out(_("Added pmmaxretries and pmminlength")); 576 } 574 577 }else{ 575 578 out(_("already exists")); modules/branches/2.7/core/module.xml
r8476 r8653 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2. 6.0.1</version>6 <version>2.7.0.0beta1.0</version> 7 7 <publisher>FreePBX</publisher> 8 8 <license>GPLv2+</license> … … 10 10 <canuninstall>no</canuninstall> 11 11 <changelog> 12 *2.7.0.0beta1.0* #3882, #4000, #1718, #3927, #3805, #4007, sql injections fixes 12 13 *2.6.0.1* #3889 reverted, #3900, #3962, #2787, #3793, #3377, #3386, #3717 13 14 *2.6.0.0* #3889, #3919
