For #1, I don't think there is a simpler way right now. The cloning
was buggy, and was causing all sorts of little gremlins, so version
1.0 got rid of it. We talked a bit about having tick boxes (rather
than the plus signs) so you could add multiple boxes, but that was a
victim of time constraints. That could be a worthy enhancement for
the next version. There might be simpler ways to just clone the
entire guide's sql, come to think of it.
For #2, if you go to control/guides/guide.php and find this line near the top:
// See if they have permission to edit this guide
if (!isset($_SESSION["admin"]) || $_SESSION["admin"] != 1) {
you could change this to, say, allow only people with the "records"
permission (basically, ability to create records or guides) to modify
other peoples' guides:
if (!isset($_SESSION["records"]) || $_SESSION["records"] != 1) {
Andrew
> --
> You received this message because you are subscribed to the Google Groups "SubjectsPlus" group.
> To post to this group, send email to subjec...@googlegroups.com.
> To unsubscribe from this group, send email to subjectsplus...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/subjectsplus?hl=en.
>