Changeset 6853
- Timestamp:
- 09/26/08 20:13:33 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/conferences/page.conferences.php
r6653 r6853 12 12 //GNU General Public License for more details. 13 13 14 $dispnum = "conferences"; //used for switch on config.php 14 15 15 16 isset($_REQUEST['action'])?$action = $_REQUEST['action']:$action=''; 16 17 //the extension we are currently displaying 17 18 isset($_REQUEST['extdisplay'])?$extdisplay=$_REQUEST['extdisplay']:$extdisplay=''; 18 $dispnum = "conferences"; //used for switch on config.php 19 20 $account = isset($_REQUEST['account']) ? $_REQUEST['account'] : ''; 19 21 20 22 //check if the extension is within range for this user … … 31 33 if (!empty($usage_arr)) { 32 34 $conflict_url = framework_display_extension_usage_alert($usage_arr); 33 } elseif (conferences_add($ _REQUEST['account'],$_REQUEST['name'],$_REQUEST['userpin'],$_REQUEST['adminpin'],$_REQUEST['options'],$_REQUEST['joinmsg_id']) !== false) {35 } elseif (conferences_add($account,$_REQUEST['name'],$_REQUEST['userpin'],$_REQUEST['adminpin'],$_REQUEST['options'],$_REQUEST['joinmsg_id']) !== false) { 34 36 needreload(); 35 37 redirect_standard(); … … 42 44 break; 43 45 case "edit": //just delete and re-add 44 conferences_del($ _REQUEST['account']);45 conferences_add($ _REQUEST['account'],$_REQUEST['name'],$_REQUEST['userpin'],$_REQUEST['adminpin'],$_REQUEST['options'],$_REQUEST['joinmsg_id']);46 conferences_del($account); 47 conferences_add($account,$_REQUEST['name'],$_REQUEST['userpin'],$_REQUEST['adminpin'],$_REQUEST['options'],$_REQUEST['joinmsg_id']); 46 48 needreload(); 47 49 redirect_standard('extdisplay');
