Oh, and something else....tags are refered to as "keywords" in the admin panel. My videos do indeed show the keywords, or "tags" entered by the user for that particular video.

Also...certain common words (such as prepositions) are stripped out... "the", "it" "of", etc. If you want to also have those common words appearing, you'll have to allow them and that's located somewhere in the smarty thingie...I'll see if I can locate the file that controls that. I found it once before.

It's here:

include/classes/tags.php Look for

Code:
function common_word($tag) {
		$common_words = array('i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 'yours',
						'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', 'her', 'hers',
						'herself', 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves',
						'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are',
						'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does',
						'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until',
						'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into',
						'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down',
						'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here',
						'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more',
						'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so',
						'than', 'too', 'very');
and delete any of these words that you want to allow past the stripping process.

If you want to help speed up the script, get rid of all the COMMENTS that appear throughout the open source php files, especially in the include/smarty/libs section and to prevent CPU overload on the sql see this thread: viewtopic.php?f=6&t=3955