I fixed this problem for my gallery short code don’t know where the rel=’lightbox’ code is showing up in my output code but it works for the images in the gallery.
In the file wp-includes/post-template.php
is a line of code (line 789 in my file)
return apply_filters( 'wp_get_attachment_link', "<a href='$url' title='$post_title'>$link_text</a>", $id, $size, $permalink, $icon );
and i pasted the rel code there like this:
return apply_filters( 'wp_get_attachment_link', "<a href='$url' rel='lightbox[gallery]' title='$post_title'>$link_text</a>", $id, $size, $permalink, $icon );
and it works for me