Browse Source

- Fix Route in explore

pull/16/head
Jaussoin Timothée 13 years ago
parent
commit
7e9f55f0ca
  1. 2
      app/widgets/Explore/Explore.php
  2. 3
      themes/movim/css/posts.css

2
app/widgets/Explore/Explore.php

@ -88,7 +88,7 @@ class Explore extends WidgetCommon {
foreach($users as $user) {
$html .= '
<div class="post">
<a href="?q=friend&f='.$user->jid.'">
<a href="'.Route::urlize('friend', $user->jid).'">
<img class="avatar" src="'.$user->getPhoto('m').'"/>
<div class="postbubble">
<span class="name">'.

3
themes/movim/css/posts.css

@ -5,7 +5,7 @@
width: 100%;
min-height: 2em;
padding-left: 1.5em;
padding-top: 0.5em;
padding-top: 1em;
}
.posthead:after {
@ -34,6 +34,7 @@
padding: 1em;
padding-top: 0em;
line-height: 1.3em;
padding-left: 0.5em;
word-wrap: break-word;
overflow: hidden;
}

Loading…
Cancel
Save