aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/common.inc.php3
-rw-r--r--include/picture_metadata.inc.php1
2 files changed, 2 insertions, 2 deletions
diff --git a/include/common.inc.php b/include/common.inc.php
index 2b02e0cf8..c1ebc7f74 100644
--- a/include/common.inc.php
+++ b/include/common.inc.php
@@ -137,6 +137,7 @@ or die ( "Could not connect to database" );
// since basic gallery information is not available
//
load_conf_from_db();
+load_plugins();
include(PHPWG_ROOT_PATH.'include/user.inc.php');
@@ -158,8 +159,6 @@ if ($user['is_the_guest'])
// template instance
$template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template'], $user['theme'] );
-load_plugins();
-
if ($conf['gallery_locked'])
{
$header_msgs[] = $lang['gallery_locked_message'];
diff --git a/include/picture_metadata.inc.php b/include/picture_metadata.inc.php
index 038737eb7..a661a09e9 100644
--- a/include/picture_metadata.inc.php
+++ b/include/picture_metadata.inc.php
@@ -41,6 +41,7 @@ if ($conf['show_exif'])
if ($exif = @read_exif_data($picture['current']['image_path']))
{
+ $exif = trigger_event('format_exif_data', $exif, $picture['current'] );
$template->assign_block_vars(
'metadata.headline',
array('TITLE' => 'EXIF Metadata')