diff options
Diffstat (limited to '')
-rw-r--r-- | admin/configuration.php | 2 | ||||
-rw-r--r-- | profile.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index 4cf7ad347..69c0fb4fb 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -652,7 +652,7 @@ $vtp->addSession( $sub, 'param_line' ); $vtp->setVar( $sub, 'param_line.name', $lang['customize_theme'] ); $vtp->addSession( $sub, 'select' ); $vtp->setVar( $sub, 'select.name', 'template' ); -$option = get_dirs( '../template/' ); +$option = get_dirs( '../template' ); for ( $i = 0; $i < sizeof( $option ); $i++ ) { $vtp->addSession( $sub, 'option' ); diff --git a/profile.php b/profile.php index 3c19adf5b..3254b727a 100644 --- a/profile.php +++ b/profile.php @@ -201,7 +201,7 @@ if ( in_array( 'template', $infos ) ) $vtp->setVar( $handle, 'line.name', $lang['customize_template'] ); $vtp->addSession( $handle, 'select' ); $vtp->setVar( $handle, 'select.name', 'template' ); - $option = get_dirs( './template/' ); + $option = get_dirs( './template' ); for ( $i = 0; $i < sizeof( $option ); $i++ ) { $vtp->addSession( $handle, 'option' ); |