Overview
Comment:Corrige souci de namespace
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA1: b8394efa7e315038830d10e4008c9cf6640cce63
User & Date: bohwaz on 2018-05-22 14:11:45
Other Links: manifest | tags
References
2020-12-08
23:25 Wiki page "Changelog/0.9" artifact: b9c916b4d1 user: bohwaz
Context
2018-05-22
14:16
Fix vĂ©rification plugins installĂ©s check-in: 3c21c0fff5 user: bohwaz tags: trunk, stable
14:11
Corrige souci de namespace check-in: b8394efa7e user: bohwaz tags: trunk, stable
13:53
Corrige scrolling horizontal fix [016baf71850425de] check-in: f0a66b7b22 user: bohwaz tags: trunk, stable
Changes

Modified src/include/lib/Garradin/Membres.php from [19f3bdb872] to [b6cfd55f6e].

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
                }
            }

            if (isset($data[$key]))
            {
                if ($config->type == 'datetime' && trim($data[$key]) !== '')
                {
                    $dt = new DateTime($data[$key]);
                    $data[$key] = $dt->format('Y-m-d H:i');
                }
                elseif ($config->type == 'tel')
                {
                    $data[$key] = Utils::normalizePhoneNumber($data[$key]);
                }
                elseif ($config->type == 'country')







|







67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
                }
            }

            if (isset($data[$key]))
            {
                if ($config->type == 'datetime' && trim($data[$key]) !== '')
                {
                    $dt = new \DateTime($data[$key]);
                    $data[$key] = $dt->format('Y-m-d H:i');
                }
                elseif ($config->type == 'tel')
                {
                    $data[$key] = Utils::normalizePhoneNumber($data[$key]);
                }
                elseif ($config->type == 'country')