Ignore:
Timestamp:
Apr 4, 2010, 4:28:26 PM (14 years ago)
Author:
Eric
Message:

[Register_FluxBB]

  • Bug 1577 fixed : Compatibility with other database systems than MySql like PostgreSql or Sqlite. Using Piwigo's pwg_db_### functions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Register_FluxBB/trunk/main.inc.php

    r5606 r5635  
    165165;';
    166166
    167           list($current_password) = mysql_fetch_row(pwg_query($query));
     167          list($current_password) = pwg_db_fetch_row(pwg_query($query));
    168168     
    169169          if ($conf['pass_convert']($_POST['password']) != $current_password)
     
    184184;';
    185185
    186         list($username) = mysql_fetch_row(pwg_query($query));
     186        list($username) = pwg_db_fetch_row(pwg_query($query));
    187187
    188188        FluxBB_Updateuser($user['id'], stripslashes($username), sha1($_POST['use_new_pwd']), $_POST['mail_address']);
Note: See TracChangeset for help on using the changeset viewer.