Advertisement
Guest User

Untitled

a guest
Sep 16th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function _clean_response( &$response ) {
  2. $bad_encoding = array( "<sup>&", ";</sup>" );
  3. $good_encoding = array( "<sup>","</sup>" );
  4. $response = str_replace( $bad_encoding, $good_encoding, $response );
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement