2 ways to fix it.. 1st is workaround. 2nd is 1 line code change.

1. Change your double quotes to single.

or

2. open admin/catmanage.php
2a. find:
PHP Code
$cat[$i]['title'] = $ctitle; 
2b. replace:
PHP Code
$cat[$i]['title'] = htmlspecialchars($ctitle); 

2c