Fixing global EWF compilation

This commit is contained in:
Jocelyn Fiat
2013-01-31 16:20:38 +01:00
parent ce469b6ede
commit a5c9329ada
8 changed files with 22 additions and 21 deletions

View File

@@ -49,13 +49,13 @@ feature -- Conversion
if not s_selectors.is_empty then
s_selectors.append_character (',')
end
s_selectors.append (cs.item)
s_selectors.append (cs.item.string)
end
if not s_selectors.is_empty then
a_target.append (s_selectors)
a_target.append_character (' ')
a_target.append_character ('{')
a_target.append (c.item.style)
c.item.style.append_text_to (a_target)
a_target.append_character ('}')
a_target.append_character ('%N')
end

View File

@@ -17,9 +17,7 @@ feature -- Status
valid_credential (u,p: READABLE_STRING_32): BOOLEAN
do
if attached service.storage.user_by_name (u) as l_user then
Result := attached l_user.encoded_password as l_pass and then l_pass.same_string (service.storage.encoded_password (p))
end
Result := service.storage.is_valid_credential (u, p)
end
feature -- Execution