Active
Project:
EasyLink
Version:
5.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Dec 2007 at 14:42 UTC
Updated:
9 Mar 2008 at 17:58 UTC
Hello,
I followed all the directions to install this module. I'm using the module version 5.x.1.x-dev on Drupal 5.5. When I click the link in tinymce, i get this in the popup window:
EasyLink EasyLink Dev queries Dev items
View Edit Clone Export View Edit Clone Export
vid
69
name
easylink
description
The basic easylink view shows all pages belonging to the current user
access
Array
(
[0] => 3
Any ideas how I can fix this?
Thank you.
Comments
Comment #1
djorn commentedThere is something wrong with the menu callbacks. I suspect it is conflicting with the views menu callback (i.e. easylink attempts to register easylink/load with the menu system, but views also registers this callback). One workaround is to hack easylink.module and change the 'path' in the following code to point to 'easylink/load/tinymce'
$items[] = array(
'path' => 'easylink/load',
'title' => t('EasyLink'),
'callback' => 'easylink_loader',
'access' => user_access('access tinymce'),
'type' => MENU_CALLBACK);
Then go to the editor_plugin.js file and find easylink/load and change it to easylink/load/tinymce
I don't know if this is the optimal way to handle this issue, but if it is I can submit a patch. Let me know.
Comment #2
djorn commentedComment #3
gustav commentedThis is a conflict with the devel module. I think bburan's solution by changing the url to easylink/load/tinymce is perfect.
Comment #4
gustav commentedThis is a conflict with the devel module. I think bburan's solution by changing the url to easylink/load/tinymce is perfect.