Don't need slash at the beginning.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1225 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
924792ffb0
commit
77fa432bae
|
@ -51,7 +51,7 @@ function update_links() {
|
|||
function get_weblogs_updatedfile() {
|
||||
global $ignore_weblogs_cache;
|
||||
$update = false;
|
||||
$file = ABSPATH . '/wp-content/links-update-cache.xml';
|
||||
$file = ABSPATH . 'wp-content/links-update-cache.xml';
|
||||
if ($ignore_weblogs_cache) {
|
||||
$update = true;
|
||||
} else {
|
||||
|
@ -76,7 +76,7 @@ function get_weblogs_updatedfile() {
|
|||
$contents = preg_replace("/'/",''',$contents);
|
||||
$contents = preg_replace('|[^[:space:][:punct:][:alpha:][:digit:]]|','',$contents);
|
||||
|
||||
$cachefp = fopen(ABSPATH . '/wp-content/links-update-cache.xml', "w");
|
||||
$cachefp = fopen(ABSPATH . 'wp-content/links-update-cache.xml', "w");
|
||||
fwrite($cachefp, $contents);
|
||||
fclose($cachefp);
|
||||
} else {
|
||||
|
@ -147,7 +147,7 @@ if (get_weblogs_updatedfile()) {
|
|||
xml_set_element_handler($xml_parser, "startElement", "endElement");
|
||||
|
||||
// Open the XML file for reading
|
||||
$fp = fopen(ABSPATH . '/wp-content/links-update-cache.xml', "r")
|
||||
$fp = fopen(ABSPATH . 'wp-content/links-update-cache.xml', "r")
|
||||
or die("Error reading XML data.");
|
||||
|
||||
// Read the XML file 16KB at a time
|
||||
|
|
Loading…
Reference in New Issue