Ignore:
Timestamp:
Nov 20, 2009, 3:17:04 PM (14 years ago)
Author:
nikrou
Message:

Feature 1244 resolved
Replace all mysql functions in core code by ones independant of database engine

Fix small php code synxtax : hash must be accessed with [ ] and not { }.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions_notification_by_mail.inc.php

    r4304 r4325  
    6060  check_key = \''.$key.'\';';
    6161
    62     list($count) = mysql_fetch_row(pwg_query($query));
     62    list($count) = pwg_db_fetch_row(pwg_query($query));
    6363    if ($count == 0)
    6464    {
     
    168168    if (!empty($result))
    169169    {
    170       while ($nbm_user = mysql_fetch_assoc($result))
     170      while ($nbm_user = pwg_db_fetch_assoc($result))
    171171      {
    172172        array_push($data_users, $nbm_user);
Note: See TracChangeset for help on using the changeset viewer.