* This function will reorder the array of tables
*/
function orderTables() {
- $result =& $this->orderElements($this->tables);
+ $result = $this->orderElements($this->tables);
if ($result) {
$this->setTables($result);
return true;
* This function will reorder the array of statements
*/
function orderStatements() {
- $result =& $this->orderElements($this->statements);
+ $result = $this->orderElements($this->statements);
if ($result) {
$this->setStatements($result);
return true;
* This function will reorder the array of fields
*/
function orderFields() {
- $result =& $this->orderElements($this->fields);
+ $result = $this->orderElements($this->fields);
if ($result) {
$this->setFields($result);
return true;
* This function will reorder the array of keys
*/
function orderKeys() {
- $result =& $this->orderElements($this->keys);
+ $result = $this->orderElements($this->keys);
if ($result) {
$this->setKeys($result);
return true;
* This function will reorder the array of indexes
*/
function orderIndexes() {
- $result =& $this->orderElements($this->indexes);
+ $result = $this->orderElements($this->indexes);
if ($result) {
$this->setIndexes($result);
return true;