diff options
author | Mark <mc.prins@gmail.com> | 2012-08-27 13:32:29 +0200 |
---|---|---|
committer | Mark <mc.prins@gmail.com> | 2012-08-27 13:32:29 +0200 |
commit | e10c99f4364d7caf985936fb23fe5630f699c8bc (patch) | |
tree | 6877831eac563593ad79a9e284f1981a7e022d87 /lib/plugins/plugin | |
parent | d836931ddf7db7f96da56cb7f6b4183cb139afe7 (diff) | |
download | rpg-e10c99f4364d7caf985936fb23fe5630f699c8bc.tar.gz rpg-e10c99f4364d7caf985936fb23fe5630f699c8bc.tar.bz2 |
update the url to the latest one used in the manager
FIX for FS#2463 <https://bugs.dokuwiki.org/index.php?do=details&task_id=2463>
Diffstat (limited to 'lib/plugins/plugin')
-rw-r--r-- | lib/plugins/plugin/classes/ap_manage.class.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/plugins/plugin/classes/ap_manage.class.php b/lib/plugins/plugin/classes/ap_manage.class.php index 12480e922..28579cbe9 100644 --- a/lib/plugins/plugin/classes/ap_manage.class.php +++ b/lib/plugins/plugin/classes/ap_manage.class.php @@ -141,9 +141,18 @@ class ap_manage { break; case 'update' : + $url = $data[0]; $date = date('r'); - if (!$fp = @fopen($file, 'a')) return; - fwrite($fp, "updated=$date\n"); + if (!$fp = @fopen($file, 'r+')) return; + $buffer = ""; + while (($line = fgets($fp)) !== false) { + $urlFound = strpos($line,"url"); + if($urlFound !== false) $line="url=$url\n"; + $buffer .= $line; + } + $buffer .= "updated=$date\n"; + fseek($fp, 0); + fwrite($fp, $buffer); fclose($fp); break; } |