remove contextual compatiblity, and require functions-compat instead

git-svn-id: https://develop.svn.wordpress.org/trunk@1777 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
michelvaldrighi
2004-10-11 13:22:33 +00:00
parent 370d9aee36
commit 2d58fd7954
2 changed files with 2 additions and 18 deletions

View File

@@ -35,18 +35,6 @@ function starify($string) {
logIO("I", $HTTP_RAW_POST_DATA);
function printr($var, $do_not_echo = false) {
// from php.net/print_r user contributed notes
ob_start();
print_r($var);
$code = htmlentities(ob_get_contents());
ob_clean();
if (!$do_not_echo) {
echo "<pre>$code</pre>";
}
return $code;
}
function mkdir_p($target) {
// from php.net/mkdir user contributed notes
if (file_exists($target)) {