Skip to content
Snippets Groups Projects
Commit a99d3236 authored by Esther Brunner's avatar Esther Brunner
Browse files

ml() bugfix - images were broken with no rewriting

darcs-hash:20050816182528-283c4-1434bdd2e4c04202d2ccb36a987223fd6510cc6a.gz
parent e1f3d9e1
No related branches found
No related tags found
No related merge requests found
......@@ -310,17 +310,17 @@ function ml($id='',$more='',$direct=true){
}
// build URL based on rewrite mode
if($conf['userewrite']){
$xlink .= $script.'/'.$id;
if($more) $xlink .= '?'.$more;
}else{
if($more){
$xlink .= '?'.$more;
$xlink .= '&media='.$id;
}else{
$xlink .= '?media='.$id;
}
}
if($conf['userewrite']){
$xlink .= $script.'/'.$id;
if($more) $xlink .= '?'.$more;
}else{
if($more){
$xlink .= $script.'?'.$more;
$xlink .= '&media='.$id;
}else{
$xlink .= $script.'?media='.$id;
}
}
return $xlink;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment