I can´t access to edit fields with drupal 6.13, I tried with page, story and my own content types, there is no way.

Mozilla gives me this error uncaught exception: Syntax error, unrecognized expression: [@id*=enable]

I have the following javascript files

I Also tried dev version.

Regards

CommentFileSizeAuthor
#2 contemplate.js-573500-2.patch300 bytestravismiller

Comments

etion’s picture

Problem solved you have to save and then you can edit, sorry.

travismiller’s picture

Status: Active » Needs review
StatusFileSize
new300 bytes

this happens if you have updated jquery to version 1.3. (i.e. jquery_update)

http://docs.jquery.com/Selectors

Note: In jQuery 1.3 [@attr] style selectors were removed (they were previously deprecated in jQuery 1.2). Simply remove the '@' symbol from your selectors in order to make them work again.

 if (Drupal.jsEnabled) {
   $(document).ready(function(){
-    $("input[@id*=enable]")
+    $("input[id*=enable]")
       .click(Drupal.contemplate.toggle)
   });
 }
ali_b’s picture

thanks

grasmash’s picture

I also had this problem-- couldn't edit the fields. However, I didn't receive any errors. The patch fixed it! Thanks.

jrglasgow’s picture

Status: Needs review » Fixed

this patch has been committed

Naturalist’s picture

Tried this fix but it worked for a couple of minutes. After creating a content type editing can be done but after creating a node by that content type editing links disappear. All other content types that have nodes unable to edit.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.