Changeset 1124

Show
Ignore:
Timestamp:
05/24/08 13:04:37 (6 months ago)
Author:
A1ex
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bb-lightbox2/trunk/bb-lightbox2.php

    r1123 r1124  
    2525 
    2626function bb_preg_callback2($matches) { 
     27  print_r ($matches); 
    2728  return '<a href="'.$matches[2].'" rel="lightbox">'.'<img src="'.ImgTumb($matches).'" />'.'</a>'; 
    2829}  
     
    3031function bb_removeLinks($content) { 
    3132 
    32   $content = preg_replace_callback('@(]|<img.*src="(([^>"]*/)(.*[^"]))"*[^<].>)[^(</a>)]@i', "bb_preg_callback2", $content); 
     33  $content = preg_replace_callback('@(]|<img.*src="(([^>"]*/)(.*[^"]))"*[^<].>).[^(</a>)]@i', "bb_preg_callback2", $content); 
    3334 
    3435  return $content;