Este mod permite exibir um aviso sobre links partilhados.

Iniciado por candidosa2, Hoje at 03:48

Tópico anterior - Tópico seguinte

0 Membros e 1 Visitante estão a ver este tópico.

candidosa2

Abra o ficheiro Source/Subs.php;

Encontre o seguinte:

array(
'tag' => 'url',
'type' => 'unparsed_equals',
'quoted' => 'optional',
'before' => '<a href="$1" class="bbc_link" target="_blank">',
'after' => '</a>',
'validate' => function (&$tag, &$data, $disabled)
{
$scheme = parse_url($data, PHP_URL_SCHEME);
if (empty($scheme))
$data = '//' . ltrim($data, ':/');
},
'disallow_children' => array('email', 'ftp', 'url', 'iurl'),
'disabled_after' => ' ($1)',
),
);

Substitua:

array(
'tag' => 'url',
'type' => 'unparsed_equals',
'quoted' => 'optional',
'before' => '<a href="https://portal2.smfpt.net/out.php?url=$1" class="bbc_link" target="_blank">',
'after' => '</a>',
'validate' => function (&$tag, &$data, $disabled)
{
$scheme = parse_url($data, PHP_URL_SCHEME);
if (empty($scheme))
$data = '//' . ltrim($data, ':/');
},
'disallow_children' => array('email', 'ftp', 'url', 'iurl'),
'disabled_after' => ' ($1)',
),
);

Link demo https://portal2.smfpt.net/