Changeset - 09e58532d4f7
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 15 years ago 2010-12-07 03:22:15
marcin@python-works.com
fixed some w3c html
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/helpers.py
Show inline comments
 
@@ -485,7 +485,7 @@ def action_parser_icon(user_log):
 
    if len(x) > 1:
 
        action, action_params = x
 

	
 
    tmpl = """<img src="/images/icons/%s">"""
 
    tmpl = """<img src="/images/icons/%s" alt="%s"/>"""
 
    map = {'user_deleted_repo':'database_delete.png',
 
           'user_created_repo':'database_add.png',
 
           'user_forked_repo':'arrow_divide.png',
 
@@ -499,7 +499,7 @@ def action_parser_icon(user_log):
 
           'started_following_repo':'heart_add.png',
 
           'stopped_following_repo':'heart_delete.png',
 
            }
 
    return literal(tmpl % map.get(action, action))
 
    return literal(tmpl % (map.get(action, action), action))
 

	
 

	
 
#==============================================================================
0 comments (0 inline, 0 general)