deprecated functions (getGalleryIndexURL and next_image)

Hello,

I am using both functions for my own theme. Now I am trying to get rid of the warning when checking for deprecated functions:

album.php
getGalleryIndexURL+
next_image+

i studied the album.php from the actual basic theme, but I can't find the problem with my implementation.

for example when displaying the gallery title:

[code]
<div id="gallerytitle">
<h2>
<span>
| ">&laquo <?php echo getGalleryTitle();?>

| <?php printParentBreadcrumb(); ?> 
</span>
<?php printAlbumTitle(true);?><?php if (getOption('Allow_search')) { printSearchForm(''); } ?>
</h2>
</div>
[/code]

does anybody have a clue while this leads to a warning?

regards

Comments

  • The "+" sign means that there are deprecated parameters to the functions.
    Since the code you listed does not contain either of the functions flagged there is no way to tell what might be wrong. In the case of `getGalleryIndexURL()` it should have no parameters. In the case of `next_image()` it should not have the "sort" parameters.
Sign In or Register to comment.