2         @define('CONST_ConnectionBucket_PageType', 'Status');
 
   4         require_once(dirname(dirname(__FILE__)).'/lib/init-website.php');
 
   7         if (!$oDB || PEAR::isError($oDB))
 
   9                 echo "ERROR: No database";
 
  13         $sStandardWord = $oDB->getOne("select make_standard_name('a')");
 
  14         if (PEAR::isError($sStandardWord))
 
  16                 echo "ERROR: Module failed";
 
  19         if ($sStandardWord != 'a')
 
  21                 echo "ERROR: Transliteration failed";
 
  25         $iWordID = $oDB->getOne("select word_id,word_token, word, class, type, country_code, operator, search_name_count from word where word_token in (' a')");
 
  26         if (PEAR::isError($iWordID))
 
  28                 echo "ERROR: Query failed";
 
  33                 echo "ERROR: No value";