login/edit: refresh thumbnails on avatar upload
[minimedit.git] / login / edit.php
index fe70ef95144dc5e348584c4ed0f09d3eaae388d6..9611c7d8ba85a5cb25d820ff8f7c74a3f443e13e 100644 (file)
@@ -85,6 +85,10 @@ if ($_POST) {
                if (!@move_uploaded_file($val['tmp_name'], $cols[$col]['target'])) {
                        $colwarn[$col] = "Fout bij opslaan.";
                }
+               foreach (@glob('thumb/*/') as $thumbres) {
+                       # attempt to remove old derivations
+                       @unlink($thumbres.'/'.$cols[$col]['target']);
+               }
                $cols[$col]['value'] = '';
        }
 
@@ -109,14 +113,15 @@ if ($_POST) {
        Geef een e-mailadres op waarmee we u kunnen bereiken indien nodig.
        Wij zullen dit adres nooit vrij- of doorgeven.
        </p>
+       <ul class="grid">
 <?php
 foreach ($cols as $col => &$colconf) {
        print "\t";
-       printf('<label for="%s">%s:</label> ', $col, ucfirst($colconf['label']));
+       printf('<li><label for="%s">%s:</label>', $col, ucfirst($colconf['label']));
        if (@$colconf['type'] == 'file' and isset($colconf['value'])) {
-               printf('<a href="/%s"><img src="/thumb/%s/%s" /></a><br />',
+               printf('<a href="/%s"><img src="/thumb/%s/%s?%s" /></a><br />',
                        $colconf['target'],
-                       200, $colconf['target']
+                       200, $colconf['target'], filemtime($colconf['target'])
                );
        }
        print "<input";
@@ -135,17 +140,13 @@ foreach ($cols as $col => &$colconf) {
        if ($error = @$colwarn[$col]) {
                print " <span class=warn>$error</span>\n";
        }
-       print "<br />\n";
+       print "</li>\n";
 }
 
 if (isset($user['pass'])) {
-       if ($hide = empty($_POST['newpass'])) {
+       $hide = empty($_POST['newpass']);
 ?>
-       <p><a onclick="document.getElementById('pass').removeAttribute('hidden'); this.remove()">Wachtwoord wijzigen</a></p>
-<?php
-       }
-?>
-       <div id="pass"<?php if ($hide) print ' hidden'; ?>>
+       <li id="pass"<?php if ($hide) print ' hidden style="display:none"'; ?>>
                <label for="newpass">Wachtwoord:</label>
                <input type="password" name="oldpass" value="" placeholder="Huidig wachtwoord" />
                <input type="password" name="newpass" value="" placeholder="Nieuw wachtwoord" />
@@ -155,9 +156,17 @@ if (isset($user['pass'])) {
                print " <span class=warn>$error</span>\n";
        }
 ?>
-       </div>
+       </li>
 <?php
 }
 ?>
+       </ul>
        <input type="submit" value="Opslaan" />
 </form>
+
+<?php
+       if ($hide) {
+?>
+       <p><a onclick="document.getElementById('pass').removeAttribute('style'); this.remove()">Wachtwoord wijzigen</a></p>
+<?php
+       }