You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The title attribute in Menu, Read More in blog and set in image upload in Filecabinet and CKEditor should be removed. Title is not used for images, and actually hinders accessibility for links.
for blog, Blog.php line 399 if you change:
$template['READ_MORE'] = PHPWS_Text::rewriteLink(Icon::get('chevron-circle-down') . ' ' . dgettext('blog', 'Read more'), 'blog',
to something like
$template['READ_MORE'] = PHPWS_Text::rewriteLink(Icon::get('chevron-circle-down') . ' ' . dgettext('blog', 'Read more of '.$this->title.''), 'blog',
you'll get a more meaningful link for the visually impaired.
The title attribute in Menu, Read More in blog and set in image upload in Filecabinet and CKEditor should be removed. Title is not used for images, and actually hinders accessibility for links.
for blog, Blog.php line 399 if you change:
$template['READ_MORE'] = PHPWS_Text::rewriteLink(Icon::get('chevron-circle-down') . ' ' . dgettext('blog', 'Read more'), 'blog',
to something like
$template['READ_MORE'] = PHPWS_Text::rewriteLink(Icon::get('chevron-circle-down') . ' ' . dgettext('blog', 'Read more of '.$this->title.''), 'blog',
you'll get a more meaningful link for the visually impaired.
┆Issue is synchronized with this Asana task
The text was updated successfully, but these errors were encountered: