Commit 1d38f6d7bb846eff52e4f64bf6381a0c193ed9a5
1 parent
8e7de0e4
Exists in
master
and in
29 other branches
[stoa] Hotfix in the image url while bug is not solved
Showing
2 changed files
with
3 additions
and
4 deletions
Show diff stats
plugins/stoa/lib/ext/person.rb
... | ... | @@ -12,7 +12,7 @@ class Person |
12 | 12 | end |
13 | 13 | |
14 | 14 | def invitation_task |
15 | - Task.pending.find(:first, :conditions => {:code => invitation_code}) || | |
15 | + Task.pending.find(:first, :conditions => {:code => invitation_code}) || | |
16 | 16 | Task.finished.find(:first, :conditions => {:code => invitation_code, :target_id => id}) |
17 | 17 | end |
18 | 18 | end | ... | ... |
plugins/stoa/public/style.css
... | ... | @@ -3,6 +3,5 @@ |
3 | 3 | display: block; |
4 | 4 | } |
5 | 5 | |
6 | -.controller-profile_editor a.control-panel-invite-friends {background-image: url(../stoa/images/control-panel/invite-friends.png)} | |
7 | -.controller-profile_editor .msie6 a.control-panel-invite-friends {background-image: url(../stoa/images/control-panel/invite-friends.gif)} | |
8 | - | |
6 | +.controller-profile_editor a.control-panel-invite-friends {background-image: url(../../plugins/stoa/images/control-panel/invite-friends.png)} | |
7 | +.controller-profile_editor .msie6 a.control-panel-invite-friends {background-image: url(../../plugins/stoa/images/control-panel/invite-friends.gif)} | ... | ... |