Show
Ignore:
Timestamp:
05/29/09 14:01:54 (3 years ago)
Author:
seanmh
Message:

1.0.0 Added backward compatibility support for 2.0 rev 1104.

Fixed bug in which a flawed context would prevent orphaned parked calls from ringing back to the parking extension if parked via the panel.
Made debug menu always visible.
Added server debug menu.
Debug logs now show on main module page.
Multiple debug options can now be set at once.
Added database column checks in installation script to handle module upgrades.
Added default FreePBX page context to configuration.
Added admin username and password fields to the main module page.
Added originate timeout field to main module page.
Added auto reload and enable page status checkboxes to main module page.
Added global Jabber connection configuration fields on main module page.
Added email and cell phone fields to extension page.
Added Jabber connection configuration override fields to extension page.
Added Jabber username and password fields to extension page.
Added auto answer checkbox to extension page.
Modified database debug tables to account for new tables and columns.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • contributed_modules/modules/isymphony/uninstall.php

    r6771 r7772  
    44 *Author       : Michael Yara 
    55 *Created      : August 15, 2008 
    6  *Last Updated : September 17, 2008 
    7  *History      : 0.2 
     6 *Last Updated : May 26, 2009 
     7 *History      : 0.3 
    88 *Purpose      : Remove iSymphony tables and manager include 
    99 *Copyright    : 2008 HEHE Enterprises, LLC 
     
    1111  
    1212global $db; 
     13  
     14//Drop location table 
     15$query = "DROP TABLE IF EXISTS isymphony_location"; 
     16echo "Removing \"isymphony_location\" Table....<br>"; 
     17$results = $db->query($query); 
     18if(DB::IsError($results)) { 
     19  echo "ERROR: could not remove table.<br>"; 
     20}  
    1321  
    1422//Drop users table