Acidfree empty album prompt

I felt new empty albums required a prompt after their creation. Prompt to upload images into the empty album after creation.

file: class_album.inc


function theme_views_view_album_grid_view($view, $type, $nodes, $teasers = false, $links = true) {
$term = taxonomy_get_term($view->args[0]);
drupal_set_breadcrumb(acidfree_make_breadcrumbs($term));
$offset = _acidfree_get_pager_offset_from_path(ALBUM_PAGER);
if ($offset) {
$offset = " - ".t('Page !page', array('!page' => "".($offset+1)));
}
drupal_set_title($term->name.$offset);
if (count($nodes) == 0) {
// below modified by rolls to add a prompt to submit photos to empty album
return "".t('This album is empty')."Upload photos to your album";
}
$output = "\n".check_markup($term->description)."\n";
$output .= theme('pager', NULL, 1, ALBUM_PAGER);
$output .= '' . "\n";
foreach ($nodes as $node) {
$node = node_load(array('nid' => $node->nid));
$output .= theme("acidfree_print_thumb_{$node->type}", $node, $term)."\n";
}
$output .= "\n";
return $output;
}