The following warnings occurred:
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message



GetSimple Support Forum
Menu Question - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: Menu Question (/showthread.php?tid=2457)



Menu Question - PMB - 2011-12-04

Where is get_navigation(return_page_slug()) Is defined ?
My menu requires a span tag to work properly.

Default GetSimple
Code:
<li class="current  index"><a href="http://localhost/mylink/" title="Welcome to My Site">Home</a></li>

What I need
Code:
<li class="current  index"><a href="http://localhost/mylink/" title="Welcome to My Site"><span>Home</span></a></li>

If anyone can guide me to the file where get_navigation is build that would be a huge help

Thanks for any help


Menu Question - yojoe - 2011-12-05

admin/inc/theme_functions.php
line 607: function get_navigation($currentpage)


Menu Question - PMB - 2011-12-05

yojoe Wrote:admin/inc/theme_functions.php
line 607: function get_navigation($currentpage)

Thanks !