blob: 20c96d163c288005407c8fd97967a85c9e5c5625 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
*
* @package testing
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
function before_assert_phpbb3_3981($vars)
{
if (!function_exists('idn_to_ascii'))
{
extract($vars);
$test->markTestSkipped('International URLs need idn_to_ascii()');
}
}
|