⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

BUG $crud->set_subject("Image for {$Type} Item : '{$CatName}'");



ezgoen

ezgoen
  • profile picture
  • Member

Posted 11 April 2013 - 00:44 AM

 

Hi folks,

 

Sorry Boss - I found a little one - urgency very low but ...

 

its a bug

 

a line like this :

 

     

 

$crud->set_subject("Image for {$Type} Item : '{$CatName}'");
 

 

 

will break the jquery

 

when you set the javascript vars the embedded quote breaks stuff.

not a big problem but its there.

 

Have to mod the line like this :

 

    

 

 $crud->set_subject("Image for {$Type} Item : {$CatName}");
 

 

 

Cheers

 

Ez