set_id('photo'); // <= don't forget tabsheet id $tabsheet->select('skeleton'); $tabsheet->assign(); /* Initialisation */ $query = ' SELECT * FROM '.IMAGES_TABLE.' WHERE id = '.$_GET['image_id'].' ;'; $picture = pwg_db_fetch_assoc(pwg_query($query)); # DO SOME STUFF HERE... or not ! /* Template */ $template->assign(array( 'F_ACTION' => $self_url, 'skeleton' => $conf['skeleton'], 'TITLE' => render_element_name($picture), 'TN_SRC' => DerivativeImage::thumb_url($picture), )); $template->set_filename('skeleton_content', realpath(SKELETON_PATH . 'admin/template/photo.tpl')); ?>