~ubuntu-branches/ubuntu/hardy/phpmyadmin/hardy

« back to all changes in this revision

Viewing changes to libraries/Table.class.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst, Thijs Kinkhorst, Translations
  • Date: 2007-06-17 17:52:03 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20070617175203-6oa2mpmgazkhp8tl
Tags: 4:2.10.2-1

[ Thijs Kinkhorst ]
* New upstream release.
* Welcome Michal Čihař as new co-maintainer.

[ Translations ]
* Vietnamese by Clytie Siddall (Closes: #427177).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
/* $Id: Table.class.php 9856 2007-01-21 13:13:42Z lem9 $ */
 
2
/* $Id: Table.class.php 10401 2007-05-17 21:57:15Z lem9 $ */
3
3
// vim: expandtab sw=4 ts=4 sts=4:
4
4
 
5
5
class PMA_Table {
466
466
    {
467
467
        $last_id = -1;
468
468
 
469
 
        if ($GLOBALS['cfgRelation'][$work]) {
 
469
        if (isset($GLOBALS['cfgRelation']) && $GLOBALS['cfgRelation'][$work]) {
470
470
            $select_parts = array();
471
471
            $row_fields = array();
472
472
            foreach ($get_fields as $get_field) {