(Untitled)

How to clean this error????

Notice: getCommentDate is deprecated. Use getCommentDateTime(). in /home3/h7u125/public_html/photo/zp-core/template-functions.php on line 2701
08/01/09 ,
Notice: getCommentTime is deprecated. Use getCommentDateTime(). in /home3/h7u125/public_html/photo/zp-core/template-functions.php on line 2726

Comments

  • I have the exact same problem, anytime a comment is left.
  • acrylian Administrator, Developer
    You are apparently using an old theme. You need either to update to one of the standard themes or update your theme manually like the error recommends. Please see the theming tutorial for more info.
  • For those who don't know php, here's the file you need to replace to fix this error. The file can be found at /yourwebsite/gallery/themes/moonlover/image.php

    In that file, find the following code:

    `

    <?php echo getCommentDate();?>
    ,
    <?php echo getCommentTime();?>
    `
    and replace it with the following code:

    `

    <?php echo getCommentDateTime();?>
    `
Sign In or Register to comment.