Quote:
Originally Posted by JulianD
Can you post line 56 of the template with the parsing problem?
|
here is the line 56 from adminfunctions_template 56
Code:
// query used for creating the temporary template table
$template_table_query = "
CREATE TABLE " . TABLE_PREFIX . "template_temp (
templateid INT UNSIGNED NOT NULL AUTO_INCREMENT,
styleid SMALLINT NOT NULL DEFAULT '0',
title VARCHAR(100) NOT NULL DEFAULT '',
template MEDIUMTEXT NOT NULL,
template_un MEDIUMTEXT NOT NULL,
templatetype enum('template','stylevar','css','replacement') NOT NULL default 'template',
dateline INT UNSIGNED NOT NULL DEFAULT '0',
username VARCHAR(50) NOT NULL DEFAULT '',
version VARCHAR(30) NOT NULL DEFAULT '',
PRIMARY KEY (templateid),
UNIQUE KEY title (title, styleid)
)
line marked in red color is line no. 56
thnx for ut time.
Sandy...