Closed (fixed)
Project:
Follow
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Feb 2010 at 00:26 UTC
Updated:
20 Mar 2010 at 01:40 UTC
line 132 and 139: there were BLOCK_CACHE_PER_ROLE and BLOCK_CACHE_PER_USER while the correct constants are DRUPAL_CACHE_PER_ROLE and DRUPAL_CACHE_PER_USER. I attached the module patched
| Comment | File | Size | Author |
|---|---|---|---|
| follow.module.zip | 6.32 KB | omissis |
Comments
Comment #1
omissis commentedhere it is the diff from 7.x-1.x-dev(downloaded 12-feb-2010) to the modified one:
132c132
< 'cache' => BLOCK_CACHE_PER_ROLE,
---
> 'cache' => DRUPAL_CACHE_PER_ROLE,
139c139
< 'cache' => BLOCK_CACHE_PER_USER,
---
> 'cache' => DRUPAL_CACHE_PER_USER,
Comment #2
q0rban commentedNice catch! Committed: http://drupal.org/cvs?commit=337638