Skip to content

Commit

Permalink
Fix missing language string 'edit_link'
Browse files Browse the repository at this point in the history
Regression from 0a8eaa7.

Fixes #27298
  • Loading branch information
dregad committed Mar 2, 2021
1 parent 00c6da2 commit 0f37d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_proj_edit_page.php
Expand Up @@ -813,7 +813,7 @@
if( $t_can_manage_this_user ) {
echo '<div class="editable_access_level">';
echo $t_current_level_string . '<span class="hidden unchanged">';
echo ' <a href="#" class="edit_link">[' . lang_get( 'edit_link' ) . ']</a>';
echo ' <a href="#" class="edit_link">[' . lang_get( 'edit' ) . ']</a>';
echo '</span>';
$t_arrow = layout_is_rtl() ? 'fa-long-arrow-left' : 'fa-long-arrow-right';
echo ' <span class="changed_to">';
Expand Down

0 comments on commit 0f37d2f

Please sign in to comment.