Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
2.01 Release Candidate #3
#2
ccagle8 Wrote:I've upgraded GetSimple again with a handful of bug fixes that were uncovered. Please view the change log and post here if you find any problems with it.

Download GetSimple 2.01_RC1

Remember, this is a release candidate. I feel it is secure and non-buggy, but it is not quite ready to be used on a production site. Please report any issues in this thread.

Thank you!

I am trying this last release, i have found that the functions.php in theme is not used, so i have this problem :

the code in template.php (inside theme used) :
Code:
<?php getSubpagesList( return_page_slug() );?>

the function getSubpagesList() is in functions.php :

Code:
<?php        
    function getSubpagesList($parent) {

    $data = menu_data();    
    $parent = $parent . "/";
    $output = array();
    
    foreach( $data as $menu) {
        if ($menu['parent_slug'] == $parent){
            $output[] = "<li><a title='" . $menu['title'] . "' href='" . $menu['url'] . "'>"
                                                    . $menu['title'] . $menu['parent'] . "</a></li>";
        }
    }
    sort($output);

    $menu_string = implode("\n", $output);
    echo '<ul>';
    echo $menu_string;
    echo '</ul>';
}          
?>

is it something related to the changes with menu_data() function ?

thank you.
Sharing is human real nature...
Reply


Messages In This Thread
2.01 Release Candidate #3 - by ccagle8 - 2010-02-20, 14:02:28
2.01 Release Candidate #3 - by superyms - 2010-02-20, 19:22:49
2.01 Release Candidate #3 - by Zegnåt - 2010-02-20, 19:53:12
2.01 Release Candidate #3 - by superyms - 2010-02-20, 20:25:14
2.01 Release Candidate #3 - by Zegnåt - 2010-02-20, 20:30:35
2.01 Release Candidate #3 - by superyms - 2010-02-20, 21:23:15
2.01 Release Candidate #3 - by ccagle8 - 2010-02-20, 23:10:39
2.01 Release Candidate #3 - by superyms - 2010-02-21, 05:18:51
2.01 Release Candidate #3 - by ccagle8 - 2010-02-23, 13:39:27
2.01 Release Candidate #3 - by raydale - 2010-02-23, 17:53:22
2.01 Release Candidate #3 - by ccagle8 - 2010-02-23, 21:17:12
2.01 Release Candidate #3 - by dniesel - 2010-02-24, 23:20:38
2.01 Release Candidate #3 - by ccagle8 - 2010-02-28, 13:01:50
2.01 Release Candidate #3 - by ccagle8 - 2010-02-28, 13:02:18
2.01 Release Candidate #3 - by superyms - 2010-03-01, 00:18:48



Users browsing this thread: 1 Guest(s)