diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-04-30 17:58:44 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-04-30 17:58:44 +0000 |
commit | 4aa919f38ff54b287c4ac3a23c7528642c50d1b2 (patch) | |
tree | d7b4ce94ca4d9152ba94bd6a1be8ab6fff971f3c | |
parent | 1d5af70e5e762a911dce3d5ddd413bcdc41dbde1 (diff) |
bug 24 : Identification page uses a hard-coded path towards default
template. Corrected.
git-svn-id: http://piwigo.org/svn/branches/release-1_3@414 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | identification.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/identification.php b/identification.php index 9c098abd1..b9df31ac3 100644 --- a/identification.php +++ b/identification.php @@ -49,7 +49,7 @@ if ( isset( $_POST['login'] ) ) $title = $lang['ident_page_title']; include('include/page_header.php'); -$handle = $vtp->Open( './template/default/identification.vtp' ); +$handle = $vtp->Open( './template/'.$user['template'].'/identification.vtp' ); // language $vtp->setGlobalVar( $handle, 'ident_title', $lang['ident_title'] ); $vtp->setGlobalVar( $handle, 'login', $lang['login'] ); |