Changeset 13883
- Timestamp:
- 03/23/12 14:57:51 (1 year ago)
- Files:
-
- freepbx/branches/2.7 (modified) (2 props)
- freepbx/branches/2.7/amp_conf/htdocs_panel/dhtml/index.php (modified) (1 diff)
- freepbx/branches/2.7/amp_conf/htdocs_panel/flash/mypage.php (modified) (2 diffs)
- freepbx/branches/2.7/amp_conf/htdocs_panel/index_amp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.7
- Property svn:mergeinfo changed from
/freepbx/branches/2.10:13870,13876
/freepbx/branches/2.8:13872,13878
/freepbx/branches/2.9:13871,13875-13877 to
/freepbx/branches/2.10:13870,13876
/freepbx/branches/2.8:13872,13878,13882
/freepbx/branches/2.9:13871,13875-13877,13881 - Property svnmerge-integrated changed from /freepbx/branches/2.6:1-8598,8646-8647,8828 /freepbx/branches/2.8:1-9715,9728,9961,9977,10010,10038,10050,10453,11465,11623,11673,11743,13872,13878 to /freepbx/branches/2.8:1-9715,9728,9961,9977,10010,10038,10050,10453,11465,11623,11673,11743,13872,13878,13882 /freepbx/branches/2.6:1-8598,8646-8647,8828
- Property svn:mergeinfo changed from
freepbx/branches/2.7/amp_conf/htdocs_panel/dhtml/index.php
r8166 r13883 3 3 4 4 if(isset($_GET['context'])) { 5 $contexto= $_GET['context'];5 $contexto=htmlspecialchars($_GET['context']); 6 6 $contexto=strtoupper($contexto); 7 7 $archivo = "variables$contexto.txt"; freepbx/branches/2.7/amp_conf/htdocs_panel/flash/mypage.php
r8166 r13883 8 8 echo "No caller ID provided<BR>"; 9 9 } else { 10 echo "Caller id is: " .$_GET['clid']."<BR>";10 echo "Caller id is: " . htmlspecialchars($_GET['clid']) . "<BR>"; 11 11 } 12 12 … … 14 14 echo "No caller ID Name provided<BR>"; 15 15 } else { 16 echo "Your clid name: " .base64_decode($_GET['clidname'])."<BR>";16 echo "Your clid name: " . htmlspecialchars(base64_decode($_GET['clidname'])) . "<BR>"; 17 17 } 18 18 freepbx/branches/2.7/amp_conf/htdocs_panel/index_amp.php
r8095 r13883 43 43 <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" id="operator_panel" align="left"> 44 44 <param name="allowScriptAccess" value="sameDomain" /> 45 <param name="movie" value="flash/operator_panel.swf?context=<?php echo $_REQUEST['context']?>" />45 <param name="movie" value="flash/operator_panel.swf?context=<?php echo htmlspecialchars($_REQUEST['context']) ?>" /> 46 46 <param name="quality" value="high" /> 47 47 <param name="bgcolor" value="#ffffff" /> 48 48 <param name="scale" value="exactfit" /> 49 <embed src="flash/operator_panel.swf?context=<?php echo $_REQUEST['context']?>" quality="high" scale="exactfit" bgcolor="#ffffff" width="100%" height="100%" name="operator_panel" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />49 <embed src="flash/operator_panel.swf?context=<?php echo htmlspecialchars($_REQUEST['context']) ?>" quality="high" scale="exactfit" bgcolor="#ffffff" width="100%" height="100%" name="operator_panel" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> 50 50 </object> 51 51 </body>
