Commit 904ec336 authored by Frank Bergmann's avatar Frank Bergmann

- joined b3-0-0-patches

parent a034fbf9
Pipeline #66 failed with stages
<?xml version="1.0" encoding="ISO-8859-1"?>
<message_catalog package_key="acs-kernel" package_version="5.1.4" locale="de_DE" charset="ISO-8859-1">
<message_catalog package_key="acs-kernel" package_version="5.1.5" locale="de_DE" charset="ISO-8859-1">
<msg key="authentication_authority">Authentifizierungsstelle</msg>
<msg key="common_Add">Hinzufgen</msg>
......
<?xml version="1.0" encoding="ISO-8859-1"?>
<message_catalog package_key="acs-kernel" package_version="5.1.4" locale="en_US" charset="ISO-8859-1">
<message_catalog package_key="acs-kernel" package_version="5.1.5" locale="en_US" charset="ISO-8859-1">
<msg key="authentication_authority">Authority</msg>
<description key="authentication_authority">The identifying label for an authentication server, such as an LDAP or RADIUS server.</description>
......
<?xml version="1.0" encoding="ISO-8859-1"?>
<message_catalog package_key="acs-kernel" package_version="5.1.4" locale="es_ES" charset="ISO-8859-1">
<message_catalog package_key="acs-kernel" package_version="5.1.5" locale="es_ES" charset="ISO-8859-1">
<msg key="authentication_authority">Autoridad</msg>
<msg key="common_Add">Aadir</msg>
......
<?xml version="1.0" encoding="ISO-8859-1"?>
<message_catalog package_key="acs-kernel" package_version="5.1.2d4" locale="pt_BR" charset="ISO-8859-1">
<message_catalog package_key="acs-kernel" package_version="5.1.5" locale="pt_BR" charset="ISO-8859-1">
<msg key="authentication_authority">Autoridade</msg>
<msg key="common_Add">Adicionar</msg>
......
This diff is collapsed.
......@@ -310,14 +310,13 @@ end;' language 'plpgsql';
create or replace function party__name (integer)
returns varchar as '
declare
party_id alias for $1;
p_party_id alias for $1;
begin
if party_id = -1 then
if p_party_id = -1 then
return ''The Public'';
else
return null;
return email from parties p where p.party_id = p_party_id;
end if;
end;' language 'plpgsql' immutable strict;
create or replace function party__email (integer)
......
......@@ -286,7 +286,7 @@ begin
if v_bitfromint4_count = 0 then
create or replace function bitfromint4 (integer) returns bit varying as ''
begin
return "bit"($1);
return $1::bit(32);
end;'' language ''plpgsql'' immutable strict;
end if;
return 1;
......@@ -347,7 +347,7 @@ drop function inline_1();
-- SQL92 standard "bit varying" so I've used the synonym "varbit"
-- throughout.
create function int_to_tree_key(integer) returns varbit as '
create or replace function int_to_tree_key(integer) returns varbit as '
-- Convert an integer into the bit string format used to store
-- tree sort keys. Using 4 bytes for the long keys requires
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment