OOPhoto - No More Validation In The Controller

<!--- Check to see if we have any error messages to display. --->
<cfif StructCount( LOCAL.Errors )>
 
	<cfoutput>
 
		<div class="error-messages">
 
			<h4>
				Please review the following:
			</h4>
 
			<ul>
				<cfif StructKeyExists( LOCAL.Errors, "name" )>
					<li>
						Please enter a name.
					</li>
				</cfif>
 
				<cfif StructKeyExists( LOCAL.Errors, "description" )>
					<li>
						Please enter a description.
					</li>
				</cfif>
 
				<cfif StructKeyExists( LOCAL.Errors, "photo_id_list" )>
					<li>
						Please upload at least one photo.
					</li>
				</cfif>
			<ul>
 
		</div>
 
	</cfoutput>
 
</cfif>

For Cut-and-Paste