Parent Directory
|
Revision Log
dehs.sh, update_wwwal.sh: abort execution if any of the commands return a non-zero status dehs_pg.php: replaced calls to die() with die_status which prints the message and exits with a custom status code
| 1 | <? |
| 2 | $db = @pg_pconnect("dbname=dehs"); |
| 3 | if (!$db) { |
| 4 | echo "Db error"; |
| 5 | die(1); |
| 6 | } |
| 7 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |