From e10c99f4364d7caf985936fb23fe5630f699c8bc Mon Sep 17 00:00:00 2001 From: Mark <mc.prins@gmail.com> Date: Mon, 27 Aug 2012 13:32:29 +0200 Subject: [PATCH] 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> --- lib/plugins/plugin/classes/ap_manage.class.php | 13 +++++++++++-- 1 file 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; } -- GitLab