forum.coppermine-gallery.net

Dev Board => cpg1.4 Testing/Bugs => cpg1.4 Testing/Bugs: FIXED/CLOSED => Topic started by: gram on July 30, 2005, 01:46:06 am

Title: Typo in functions.inc.php - line 1578 function fails
Post by: gram on July 30, 2005, 01:46:06 am
in function breadcrumb in the functions.inc.php file (line 1508 in my copy), there is a test for a template function on line 1576:

Code: [Select]
     // we check if the theme_breadcrumb exists...
        if (function_exists('theme_breadcrumb'))
        {
            theme_breadcrumb($breadcrumb_list, $BREADCRUMB_TEXTS, $breadcrumb, $BREADCRUMB_TEXT);
            return;
        }

This function neither creates nor has access to a variable called $breadcrumb_list.  I changed this variable to $breadcrumb_links which IS a part of this function.

Code: [Select]
           theme_breadcrumb($breadcrumb_links, $BREADCRUMB_TEXTS, $breadcrumb, $BREADCRUMB_TEXT);
It works great, and I was able to modify the breadcrumb as I needed to from the theme.php file.  You can see the modified breadcrumb in this modified version of the waterdrop theme:

http://roadstarclinic.com/galleries/index.php?cat=1

GRAM
Title: Re: Typo in functions.inc.php - line 1578 function fails
Post by: donnoman on July 30, 2005, 05:22:16 am
Thanks for locating that and providing the fix.

I've double checked and he's absolutely correct.

I've commited the fix as suggested.

functions.inc.php
new revision: 1.190