# HG changeset patch # User Zoe Hong # Date 1429801563 -7200 # Node ID ecc4b22e9b055e067533be25be221527c2d110ab # Parent 7b05275b7a709731521ea285405ff76aa03101cc Bug fixed: missing section id variable in export table from LGservice. diff -r 7b05275b7a70 -r ecc4b22e9b05 config/config.php --- a/config/config.php Thu Apr 23 15:26:48 2015 +0200 +++ b/config/config.php Thu Apr 23 17:06:03 2015 +0200 @@ -14,7 +14,7 @@ global $AT_LOCAL, $mysql_database, $mysql_server, $mysql_user, $mysql_password, $server_host, $lgserver_url, $systemNAME, $system_root_url; - $AT_LOCAL = false; + $AT_LOCAL = true; if (!$AT_LOCAL) { // host at localgazetteers-dev server diff -r 7b05275b7a70 -r ecc4b22e9b05 models/extractapp.php --- a/models/extractapp.php Thu Apr 23 15:26:48 2015 +0200 +++ b/models/extractapp.php Thu Apr 23 17:06:03 2015 +0200 @@ -689,7 +689,7 @@ if ($isFromFile) { $content = $this->lg_text; $topic = $this->topic; - $sectionId = $this->section_id; + $section_id = $this->section_id; $sectionName = $this->section_name; $bookId = $this->book_id; $bookName = $this->book_name;