Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Fixed bug when network return is html data (screwed up rest of the page)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelchisari authored and The Appleseed Project committed Oct 2, 2010
1 parent 672ab5e commit b17273a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/debug/controllers/debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ private function _PrepareNetwork ( ) {

$debugNetworkId->innertext = $l;
$debugNetworkRequest->innertext = urldecode ( $request );
$debugNetworkReturn->innertext = $return;
$debugNetworkReturn->innertext = strip_tags ( $return );

$tbody->innertext .= $row->outertext;

Expand Down

0 comments on commit b17273a

Please sign in to comment.