When clicking on Add Categories, Add Post, Add Posts by Type, Add Post Comments or Add User Posts, I still get brought to the same page showing every single content from Categories, Post etc...

Comments

agentrickard’s picture

Now that makes sense, thanks. I have a feeling that some of the code optimizations I tried to put in really screwed things up.

atuyo60’s picture

oh, I was wondering why such an established module was having these small problems that should have been addressed long ago... cos I just installed this module and it happened to be the latest version..

agentrickard’s picture

This appears to be related to the error caused by trying to statically cache certain load functions.

http://drupal.org/node/208276

agentrickard’s picture

Status: Active » Needs review

Try changing line 3027 in of mysite.module function mysite_load_includes():

if (!empty($value)) {

To:

if (!empty($value) && empty($name)) {

That should fix the issue. I am going to need to refactor that function.

agentrickard’s picture

Status: Needs review » Closed (duplicate)

I believe the patch in http://drupal.org/node/208933 is the proper solution.

agentrickard’s picture

Status: Closed (duplicate) » Needs review
agentrickard’s picture

Status: Needs review » Closed (fixed)

Addressed in 5.x.2.17.

I am quite disappointed that the patch received no reviews.

atuyo60’s picture

Sorry, I have not used the module since so I do not know if it works...