This bug was actually in articles.inc.php


Code:
Error in /admin/articles.php: You have an error in your SQL syntax near 
';
	' at line 10
Query: '
		
			SELECT
					`CategoryID`,
					`CategoryName`,
					`CategoryDescription`
			FROM
					`ArticlesCategory`
			ORDER BY `CategoryID` ASC
	;
	'
change this code in articles.inc.php. the error is on line 59.

Code:
			SELECT
					`CategoryID`,
					`CategoryName`,
					`CategoryDescription`
			FROM
					`ArticlesCategory`
			ORDER BY `CategoryID` ASC
	;
	";
Change to

Code:
			SELECT
					`CategoryID`,
					`CategoryName`,
					`CategoryDescription`
			FROM
					`ArticlesCategory`
			ORDER BY `CategoryID` ASC
	";