aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2006-07-26 21:04:23 +0000
committernikrou <nikrou@piwigo.org>2006-07-26 21:04:23 +0000
commit4b1863cbef706e64161861c63570a5f0b7a3d9aa (patch)
tree31aa5535ad94ba41d488bffabdfe2a9b32c355f1 /admin
parent5a65e6a41f72be026388a1529cff752ac906041c (diff)
svn merge -r1502:1503 (cosmetic change)
function names are case-insensitive but it's a good idea to call functions as they appear in their declaration. So all functions names that manipulate url like make_index_url() are write with lowercase git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1504 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r--admin/picture_modify.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/picture_modify.php b/admin/picture_modify.php
index 54bb45d69..130a43931 100644
--- a/admin/picture_modify.php
+++ b/admin/picture_modify.php
@@ -336,7 +336,7 @@ $authorizeds = array_diff(
if (isset($_GET['cat_id'])
and in_array($_GET['cat_id'], $authorizeds))
{
- $url_img = make_picture_URL(
+ $url_img = make_picture_url(
array(
'image_id' => $_GET['image_id'],
'image_file' => $image_file,
@@ -348,7 +348,7 @@ else
{
foreach ($authorizeds as $category)
{
- $url_img = make_picture_URL(
+ $url_img = make_picture_url(
array(
'image_id' => $_GET['image_id'],
'image_file' => $image_file,