Feature #15060 ยป 0001614.patch
typo3/sysext/cms/ext_tables.php Mon Dec 19 11:07:51 2005 | ||
---|---|---|
Array('', '0'),
|
||
Array('http://', '1'),
|
||
Array('ftp://', '2'),
|
||
Array('mailto:', '3')
|
||
Array('mailto:', '3'),
|
||
Array('https://', '4'),
|
||
),
|
||
'default' => '1'
|
||
)
|
||
|
||
|
||
-- t3lib/class.t3lib_page.php.old Mon Dec 19 11:01:39 2005
|
||
++ t3lib/class.t3lib_page.php Mon Dec 19 11:02:51 2005
|
||
... | ... | |
* @see tslib_fe::fetch_the_id()
|
||
*/
|
||
class t3lib_pageSelect {
|
||
var $urltypes = Array('','http://','ftp://','mailto:');
|
||
var $urltypes = Array('','http://','ftp://','mailto:','https://');
|
||
var $where_hid_del = ' AND pages.deleted=0'; // This is not the final clauses. There will normally be conditions for the hidden,starttime and endtime fields as well. You MUST initialize the object by the init() function
|
||
var $where_groupAccess = ''; // Clause for fe_group access
|
||
var $sys_language_uid = 0;
|