Okay...erstmal danke für Deine Antwort!
// Send e-mail notification to the admin if requested (added by gaugau: 03-11-09).
if (($CONFIG['upl_notify_admin_email']) and ($PIC_NEED_APPROVAL)) {
// Encapsulate so included lang file doesn't interfere with global one
function cpg_send_upload_notification() {
global $CONFIG;
$lang_db_input_php = cpg_get_default_lang_var('lang_db_input_php');
// Get the mail files.
include_once(MXCPG_PATH_INCLUDE.'mailer.inc.php');
// Send the message.
cpg_mail('admin', sprintf($lang_db_input_php['notify_admin_email_subject'], $CONFIG['gallery_name']), sprintf($lang_db_input_php['notify_admin_email_body'], USER_NAME, $CONFIG['ecards_more_pic_target']. (substr( $CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .'editpics.php?mode=upload_approval' ));
}
cpg_send_upload_notification();
}
Hier steht also der Link zu:
'editpics.php?mode=upload_approval'
...der zu einer Fehlerseite führt!...logisch, weil es diesen Link nicht gibt!
Der korrekte Link lautet aber:
also müsste demnach doch anstelle:
'editpics.php?mode=upload_approval'
das hier unten dort stehen, richtig?
`modules.php?name=Coppermine&act=editpics&mode=upload_approval´
Gruß,
Bernd