Changeset 2884 for trunk/include


Ignore:
Timestamp:
Nov 19, 2008, 4:44:04 PM (15 years ago)
Author:
patdenice
Message:
  • Replace some mysql_query by pwg_query function.
  • Add home button after upgrade.php.
  • Add utf8 charset for access denied message.
  • Replace some #content by .content in css files.
  • Fix menubar blocks borders with IE.
Location:
trunk/include
Files:
2 edited

Legend:

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

    r2773 r2884  
    589589  if ( isset($user) and !is_a_guest() )
    590590  {
     591    echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">';
    591592    echo '<div style="text-align:center;">'.l10n('access_forbiden').'<br />';
    592593    echo '<a href="'.get_root_url().'identification.php">'.l10n('identification').'</a>&nbsp;';
  • trunk/include/functions_session.inc.php

    r2757 r2884  
    147147  VALUES(\''.get_remote_addr_session_hash().$session_id.'\',\''.$data.'\',now())
    148148;';
    149   mysql_query($query);
     149  pwg_query($query);
    150150  return true;
    151151}
Note: See TracChangeset for help on using the changeset viewer.