if ( Options::get( 'twitter__linkify_urls' ) != FALSE ) {
/* link to all http: */
// $theme->tweet_text = preg_replace( "/(http:\/\/\S*)/", "$1", $theme->tweet_text );
$theme->tweet_text = preg_replace( '%https?://\S+?(?=(?:[.:?"!$&\'()*+,=]|)(?:\s|$))%i', "$0", $theme->tweet_text );
/* link to usernames */
// $theme->tweet_text = preg_replace( "/(^|\(|\[|\s+)@([A-Za-z0-9]{1,64})/", "$1@$2", $theme->tweet_t$
$theme->tweet_text = preg_replace( "/(?$1", $theme->tweet_text );
/* link to hashtags */
// $theme->tweet_text = preg_replace( "/(^|\(|\[|\s+)#([A-Za-z0-9_\-\.]{1,64})/",
$theme->tweet_text = preg_replace( '/(?\d{1,64}|)[\w-.]{1,64})/',
"#$1", $theme->tweet_text );
// "$1#$2", $theme->tweet_text );
}