Quote Originally Posted by neekfenwick View Post
Your last one, ask_a_question, needs a final closing bracket.

Code:
			'ask_a_question' => isset($default_uri_parts[$default_language_code]['ask_a_question']) ?
				$default_uri_parts[$default_language_code]['ask_a_question'] :
				(isset($default_uri_parts['en']['ask_a_question']) ?
				$default_uri_parts['en']['ask_a_question'] : 'Ask a Question')
(the final bracket after 'Ask a Question' matches the one on the previous line before isset).
First off thank you so much again for taking the time to help someone like me. I honestly don't know where to add that. Could you please show me ? I don't know how to code anything unless its pretty much right in front of me and i can cut and paste.