The new "hidden" flag introduced by commit 07e4a9a has not been declared in JS,
which leads to a bug in the address management profile page. Visibility flags
were no longer ordered between an address and the associated phone numbers.
var names;
var multiples;
-// Publicity follows the following ordering: private < ax < public.
+// Publicity follows the following ordering: hidden < private < ax < public.
var publicity = [];
-publicity['private'] = 0;
-publicity['ax'] = 1;
-publicity['public'] = 2;
+publicity['hidden'] = 0;
+publicity['private'] = 1;
+publicity['ax'] = 2;
+publicity['public'] = 3;
// Names {{{1