Changeset 1125

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

--

Files:

Legend:

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

    r1124 r1125  
    2525 
    2626function bb_preg_callback2($matches) { 
    27   print_r ($matches); 
    2827  return '<a href="'.$matches[2].'" rel="lightbox">'.'<img src="'.ImgTumb($matches).'" />'.'</a>'; 
    2928}  
     
    3130function bb_removeLinks($content) { 
    3231 
    33   $content = preg_replace_callback('@(]|<img.*src="(([^>"]*/)(.*[^"]))"*[^<].>).[^(</a>)]@i', "bb_preg_callback2", $content); 
     32  $content = preg_replace_callback('@(]|<img.*src="(([^>"]*/)(.*[^"]))"*[^<].>)@i', "bb_preg_callback2", $content); 
    3433 
    3534  return $content;