clipbucket/upload/install/steps/msgs.php
Arslan Hassan c1884a67a7 ADDED : Comment Validate Functions
ADDED : More Listing Options
ADDED : Allowed Video Types
FIXED : Max Upload Limit
2009-12-29 18:15:35 +00:00

21 lines
No EOL
325 B
PHP

<?php
if(count($errors)>0)
{
foreach($errors as $error)
{
?>
<span class="error"><?=$error?></span>
<?
}
}
if(count($msgs)>0)
{
foreach($msgs as $msg)
{
?>
<span class="msg"><?=$msg?></span>
<?
}
}
?>