1
0
mirror of https://github.com/e107inc/e107.git synced 2025-09-02 19:02:39 +02:00

MySQL Class: New method selectTree();

Support for custom navigation depth.
Download-categories sitelink/nav function added.
This commit is contained in:
Cameron
2017-04-19 16:35:10 -07:00
parent 5284f82310
commit 90673d2ae0
4 changed files with 211 additions and 3 deletions

View File

@@ -1863,7 +1863,7 @@ class navigation_shortcodes extends e_shortcode
function sc_link_depth($parm='')
{
return $this->depth;
return isset($this->var['link_depth']) ? intval($this->var['link_depth']) : $this->depth;
}