quicktags doesn't have option listed in "access permissions" page... is there a way to set it up so only authenticated users see the quicktags?

I messed with this but didn't have any luck.

<?php
global $user;
if(!$user->uid)
  return;
?> 

any clues?

Comments

gdip’s picture

I added the following code to the quicktag module (ca row no. 250) before and after if($output)... I'm not a programmer and most likely this is not the way to do it but it works for me.

//-->
global $user;
if ($user->uid) {
//<--

  if($output) {
    print $js ."\n". $output;
  }
}

//-->
}
//<--