Thread: Blank page
View Single Post
  #16  
Old 05-06-2007, 07:02 PM
Morgan's Avatar
Morgan Morgan is offline
Head Plog
Admin
 
Join Date: Dec 2005
Posts: 5,324
Gallery: 10
Comments: 25
Default

The problem is with the Advanced Quick Links modification. It doesn't set $links_groups to be an array unless you are viewing the adv_quick_links.php file. As such you get a "wrong datatype for second argument" error because $links_groups is a string instead of an array. Keep links_groups in the PhotoPlog Global Variables setting, and add this to a plugin located at the global_start hook:
Code:
Content visible to registered users only.
Otherwise, remove (not comment out, actually remove) the following from the navbar template:
Code:
Content visible to registered users only.
When you gets errors like this, it is my opinion that you should fix them instead of hide them by turning off error reporting. You never know what new errors you are going to get in the future, especially with the amount of modifications you install. If you just go and hide errors, you might wind up with a pile of foo and that could turn into a debugging nightmare when you really need to fix something.
__________________
Please use the forums for support, feature requests, and similar such things. Support does not include custom code, custom template edits, or third-party modifications. PMs and emails to me should be for private information only, such as login information. If you PM or email me a support question, chances are good that I'll ignore it. Thanks.
While the work or play is on, it is a lot of fun if while you are doing one you don't constantly feel that you ought to be doing the other. -- Franklin Pierce Adams
Reply With Quote