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...