start.php 389 B

1234567891011121314151617
  1. <?php
  2. // Include the thickbox javascript library and associated CSS. Elgg already supplies jQuery.
  3. // With thanks to Alistair Young <alistair@codebrane.com>
  4. function thickbox_init() {
  5. elgg_extend_view('metatags', 'thickbox/metatags');
  6. }
  7. // Make sure the profile initialisation function is called on initialisation
  8. elgg_register_event_handler('init','system','thickbox_init');