Author Topic: How do I remove the Movies icon on the bottom of the album?  (Read 3793 times)

0 Members and 1 Guest are viewing this topic.

Offline Wildkarrde

  • album.pl User
  • *
  • Posts: 13
  • Karma: +0/-0
I need to remove that because I actually have movies in a different location
Thanks

Offline frister

  • album.pl Donor
  • album.pl Hacker
  • ****
  • Posts: 230
  • Karma: +42/-0
  • half baked ideas are better than none
    • fristersoft travelogue
Re: How do I remove the Movies icon on the bottom of the album?
« Reply #1 on: August 13, 2006, 21:58:42 »
in album.pl, find
Code: [Select]
if ($::legend)
{
$legend_html="$::S{101}<br />\n";
$legend_html.="<table align=\"center\"><tr><td align=\"center\"><img src=\"$::album_icon\" align=\"center\" title=\"$::S{87} $::S{102}\" /><br />$::S{47}";
$legend_html.="</td><td align=\"center\">";
$legend_html.="<img src=\"$::photo_icon\" align=\"center\" title=\"$::S{46} $::S{102}\" /><br />$::S{46}";
$legend_html.="</td><td align=\"center\">";
$legend_html.="<img src=\"$::movie_icon\" align=\"center\" title=\"$::S{104} $::S{102}\" /><br />$::S{104}</td></tr></table>";
}
and change it to
Code: [Select]
if ($::legend)
{
$legend_html="$::S{101}<br />\n";
$legend_html.="<table align=\"center\"><tr><td align=\"center\"><img src=\"$::album_icon\" align=\"center\" title=\"$::S{87} $::S{102}\" /><br />$::S{47}";
$legend_html.="</td><td align=\"center\">";
$legend_html.="<img src=\"$::photo_icon\" align=\"center\" title=\"$::S{46} $::S{102}\" /><br />$::S{46}";
$legend_html.="</td></tr></table>";
}

Offline Wildkarrde

  • album.pl User
  • *
  • Posts: 13
  • Karma: +0/-0
Re: How do I remove the Movies icon on the bottom of the album?
« Reply #2 on: August 13, 2006, 23:27:24 »
Thanks :)