https://bugzilla.wikimedia.org/show_bug.cgi?id=47994
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] --- Had the same problem and this is how I solved it by some small changes in dumpHTML.inc (just a quick 'n dirty workaround, not meant to be a proper fix): 1.) Uncomment this lines: # $images = $this->findImages( $text ); # $this->copyImages( $images ); 2.) For some strange reason the links to the thumbnails did not work as 2F/(.*)/2F/ is added to the paths. So I added this line just before the last line of function getArticleHTML: $image = preg_replace("|/thumb2F/(.*)/2F//|","/thumb/",$TEXT); 3.) dumpHTML uses the standard thumb size 180px, but my Wiki uses 120px, so I had to change that as well with this line (just add where all other user options are set): $wgUser->setOption( 'thumbsize', 0 ); -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
