Ignore:
Timestamp:
Jun 1, 2010, 9:52:44 PM (14 years ago)
Author:
rvelices
Message:
  • do not remove slashes before calling insert_user_comment (homogeneity with update_user_comment and general use of slashes in piwigo)
  • when using a modifier on a non array variable use @| instead of | (generated code is simpler and faster)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_comment.inc.php

    r6423 r6437  
    159159    "'.$comm['author'].'",
    160160    '.$comm['author_id'].',
    161     "'.pwg_db_real_escape_string($comm['content']).'",
     161    "'.$comm['content'].'",
    162162    NOW(),
    163163    "'.($comment_action=='validate' ? 'true':'false').'",
     
    258258  }
    259259
    260 /* ? this is a MySql Error - author_id is not defined
    261   if ($comment_action!='reject' and $conf['anti-flood_time']>0 )
    262   { // anti-flood system
    263     $reference_date = time() - $conf['anti-flood_time'];
    264     $query = '
    265 SELECT id FROM '.COMMENTS_TABLE.'
    266   WHERE date > FROM_UNIXTIME('.$reference_date.')
    267     AND author_id = '.$comm['author_id'];
    268     if ( pwg_db_num_rows( pwg_query( $query ) ) > 0 )
    269     {
    270       //?? array_push( $infos, l10n('Anti-flood system : please wait for a moment before trying to post another comment') );
    271       $comment_action='reject';
    272     }
    273   }
    274 */
    275260  // perform more spam check
    276261  $comment_action =
Note: See TracChangeset for help on using the changeset viewer.