aboutsummaryrefslogtreecommitdiffstats
path: root/picture.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-10-09 11:30:23 +0000
committerz0rglub <z0rglub@piwigo.org>2004-10-09 11:30:23 +0000
commit9b1a330905174f93a5186e439e84becced051cb8 (patch)
treea4e6c408f5680da32b4afdab4ef98f7341d033e1 /picture.php
parentbfe13288a1d1230aeac6e849bc98360118b23b64 (diff)
replacement of PhpWebGallery folder representative by pwg_representative and
high by pwg_high git-svn-id: http://piwigo.org/svn/trunk@563 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r--picture.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/picture.php b/picture.php
index e55fde22f..a94b7ff68 100644
--- a/picture.php
+++ b/picture.php
@@ -153,7 +153,7 @@ foreach (array('prev', 'current', 'next') as $i)
if (isset($row['representative_ext']) and $row['representative_ext'] =! '')
{
- $picture[$i]['src'] = $cat_directory.'representative/';
+ $picture[$i]['src'] = $cat_directory.'pwg_representative/';
$picture[$i]['src'].= $file_wo_ext.'.'.$row['representative_ext'];
}
else
@@ -168,9 +168,9 @@ foreach (array('prev', 'current', 'next') as $i)
// high quality picture
if ($i == 'current')
{
- if (@fopen($cat_directory.'high/'.$row['file'], 'r'))
+ if (@fopen($cat_directory.'pwg_high/'.$row['file'], 'r'))
{
- $picture[$i]['high'] = $cat_directory.'high/'.$row['file'];
+ $picture[$i]['high'] = $cat_directory.'pwg_high/'.$row['file'];
}
}
}