Changeset 10333
- Timestamp:
- 09/29/10 04:26:38 (3 years ago)
- Files:
-
- contributed_modules/modules/endpointman/config.php (modified) (1 diff)
- contributed_modules/modules/endpointman/etc/sip_notify_endpointman.conf (moved) (moved from contributed_modules/modules/endpointman/etc/sip_notify.conf)
- contributed_modules/modules/endpointman/install.php (modified) (3 diffs)
- contributed_modules/modules/endpointman/module.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
contributed_modules/modules/endpointman/config.php
r10240 r10333 13 13 } 14 14 15 if( phpversion< '5.1.0') {16 die(_('PHP Version MUST be greater than 5.1.0!'));15 if(PHP_VERSION < '5.1.0') { 16 die(_('PHP Version MUST be greater than'). ' 5.1.0!'); 17 17 } 18 18 contributed_modules/modules/endpointman/install.php
r10329 r10333 77 77 } 78 78 79 $version = "2.3. 1";79 $version = "2.3.2"; 80 80 81 81 if(ep_table_exists("endpointman_global_vars")) { … … 133 133 } elseif($global_cfg['version'] == '2.3.1') { 134 134 $ver = "2.3.1"; 135 } elseif($global_cfg['version'] == '2.3.2') { 136 $ver = "2.3.2"; 137 } elseif($global_cfg['version'] == '2.3.3') { 138 $ver = "2.3.3"; 139 } elseif($global_cfg['version'] == '2.3.4') { 140 $ver = "2.3.4"; 141 } elseif($global_cfg['version'] == '2.3.5') { 142 $ver = "2.3.5"; 143 } elseif($global_cfg['version'] == '2.3.6') { 144 $ver = "2.3.6"; 145 } elseif($global_cfg['version'] == '2.3.7') { 146 $ver = "2.3.7"; 147 } elseif($global_cfg['version'] == '2.3.8') { 148 $ver = "2.3.8"; 135 149 } else { 136 150 $ver = "1000"; … … 1118 1132 1119 1133 } else { 1120 out("Update Version Number ");1134 out("Update Version Number to ".$version); 1121 1135 $sql = "UPDATE endpointman_global_vars SET value = '".$version."' WHERE var_name = 'version'"; 1122 1136 $db->query($sql); contributed_modules/modules/endpointman/module.xml
r10332 r10333 2 2 <rawname>endpointman</rawname> 3 3 <name>PBX End Point Manager</name> 4 <version>2.3. 1</version>4 <version>2.3.2</version> 5 5 <type>tool</type> 6 6 <category>End Point Manager</category> … … 15 15 <description>PBX End Point Manager supports automated deployment of multiple manufacturers IP telephones.</description> 16 16 <changelog> 17 *2.3.2* Various Bug Fixes 18 *2.3.1* Install directory case corrections 19 *2.3.0* No Changes 17 20 *2.2.9* Fixed ARI module & Update Local Description on Rebuild & Fix Firmware Updater 18 *2.2.8* Fixed User & Devices error.19 *2.2.6* Fixed download progress so that it displays.21 *2.2.8* Fixed User & Devices error. 22 *2.2.6* Fixed download progress so that it displays. 20 23 *2.2.5* Fixed Debug Always on Error & File download errors & Fix float error on install 21 24 *2.2.0* Stopped using iframe installer, switched to freepbx version … … 24 27 <location>contributed_modules/release/endpointman-2.3.1.tgz</location> 25 28 26 <md5sum>b 5eb587083d369c377ee7a88ff812f37</md5sum>29 <md5sum>ba0fbcdf2fc49e6bc43c2cf4dd4398bc</md5sum> 27 30 </module>
