Changeset 6667
- Timestamp:
- Jul 6, 2010, 2:17:37 PM (14 years ago)
- Location:
- branches/2.1/include
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.1/include/dblayer/functions_mysql.inc.php
r6605 r6667 637 637 } 638 638 639 function pwg_db_date_to_ts($date) 640 { 641 return 'UNIX_TIMESTAMP('.$date.')'; 642 } 643 639 644 // my_error returns (or send to standard output) the message concerning the 640 645 // error occured for the last mysql query. -
branches/2.1/include/dblayer/functions_pdo-sqlite.inc.php
r6605 r6667 551 551 } 552 552 553 function pwg_db_date_to_ts($date) 554 { 555 return 'UNIX_TIMESTAMP('.$date.')'; 556 } 557 553 558 // my_error returns (or send to standard output) the message concerning the 554 559 // error occured for the last mysql query. -
branches/2.1/include/dblayer/functions_pgsql.inc.php
r6605 r6667 597 597 } 598 598 599 function pwg_db_date_to_ts($date) 600 { 601 return 'EXTRACT(EPOCH FROM '.$date.')'; 602 } 603 599 604 // my_error returns (or send to standard output) the message concerning the 600 605 // error occured for the last pgsql query. -
branches/2.1/include/dblayer/functions_sqlite.inc.php
r6605 r6667 562 562 } 563 563 564 function pwg_db_date_to_ts($date) 565 { 566 return 'UNIX_TIMESTAMP('.$date.')'; 567 } 568 564 569 // my_error returns (or send to standard output) the message concerning the 565 570 // error occured for the last mysql query. -
branches/2.1/include/functions_session.inc.php
r6364 r6667 176 176 DELETE 177 177 FROM '.SESSIONS_TABLE.' 178 WHERE UNIX_TIMESTAMP(NOW()) - UNIX_TIMESTAMP(expiration)> '178 WHERE '.pwg_db_date_to_ts('NOW()').' - '.pwg_db_date_to_ts('expiration').' > ' 179 179 .$conf['session_length'].' 180 180 ;';
Note: See TracChangeset
for help on using the changeset viewer.