Changeset 5751
- Timestamp:
- 04/25/08 14:06:50 (6 months ago)
- Files:
-
- freepbx/branches/2.4 (modified) (1 prop)
- freepbx/branches/2.4/amp_conf/htdocs/recordings/includes/login.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.4
- Property svnmerge-integrated changed from /freepbx/branches/2.3:1-4129,4131,4133-4134,4136-4995,5088,5135,5140,5194 /freepbx/trunk:1-5453,5736,5739,5748 to /freepbx/branches/2.3:1-4129,4131,4133-4134,4136-4995,5088,5135,5140,5194 /freepbx/trunk:1-5453,5736,5739,5748,5750
freepbx/branches/2.4/amp_conf/htdocs/recordings/includes/login.php
r4993 r5751 358 358 if ($response) { 359 359 360 $posLeft = strpos( $response, "<")+strlen("<"); 361 $posRight = strpos( $response, ">", $posLeft); 362 $ret = substr( $response,$posLeft,$posRight-$posLeft); 360 if (!strpos( $response, "<")) { 361 $ret = trim($response); 362 } else { 363 $posLeft = strpos( $response, "<")+strlen("<"); 364 $posRight = strpos( $response, ">", $posLeft); 365 $ret = substr( $response,$posLeft,$posRight-$posLeft); 366 } 363 367 } 364 368 return $ret;
