X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/0c55414fd58400c3923b1b16d5b194a9916637fb..b153d8fc29f423b3cc67ca9dbcab874ab9ab0464:/login/edit.php diff --git a/login/edit.php b/login/edit.php index 9b339a2..2b043cc 100644 --- a/login/edit.php +++ b/login/edit.php @@ -41,14 +41,15 @@ foreach ($cols as $col => &$colconf) { $tagname = pathinfo($tag, PATHINFO_BASENAME); $target = "$tag/{$user['name']}"; $val = file_exists($target); - $tags[$tagname] = ['value' => $val]; + $tagopt = &$colconf['values'][$tagname]; + $tagopt = ['value' => $val]; if (!is_writable($tag)) { continue; # locked tag directory } if ($val and !is_writable($target)) { continue; # existing file locked } - $tags[$tagname]['target'] = $target; + $tagopt['target'] = $target; } } @@ -172,9 +173,10 @@ foreach ($cols as $col => &$colconf) { print "\t"; printf('
  • ', $col, ucfirst($colconf['label'])); if (@$colconf['type'] == 'file' and isset($colconf['value'])) { + $target = $user['dir'] . '/' . $colconf['filename']; printf('
    ', - $colconf['target'], - 200, $colconf['target'], filemtime($colconf['target']) + $target, + 200, $target, filemtime($target) ); } @@ -202,7 +204,7 @@ foreach ($cols as $col => &$colconf) { ); } } - else { + elseif (@$colconf['type'] !== 'file' or isset($colconf['target'])) { if (isset($cols[$col]['filter'])) { list ($targetstr, $inputstr) = $cols[$col]['filter']; $colconf['value'] = str_replace($targetstr, $inputstr, @$colconf['value']);