View Single Post
  #9  
Old 04-08-2011, 05:53 PM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 42,640
fadillzzz is an unknown quantity at this point
Default

Open your functions.php in the inc folder and find this on line 849
PHP Code:
    $template .= "<div style='position: fixed; bottom: 0; left: 0; color: white; font-size: 10px; width: 380px; '>A total of {$GLOBALS['numberofqueries']} queries were used in this page. They were: {$GLOBALS['queries']}</div>"
And comment out that line, so it will become like this
PHP Code:
//     $template .= "<div style='position: fixed; bottom: 0; left: 0; color: white; font-size: 10px; width: 380px; '>A total of {$GLOBALS['numberofqueries']} queries were used in this page. They were: {$GLOBALS['queries']}</div>"; 
For the URL, just do the same thing on line 85
PHP Code:
    $data htmlentities($data); 
change it to
PHP Code:
//    $data = htmlentities($data); 

Last edited by fadillzzz; 04-08-2011 at 05:56 PM.
Reply With Quote