Revision 7895
Added by Aaron Marcuse-Kubitza almost 12 years ago
web/vegpath/index.php | ||
---|---|---|
65 | 65 |
} |
66 | 66 |
else $subject = "table"; |
67 | 67 |
} |
68 |
return $url."&subject=".$subject; |
|
68 |
$url .= "&subject=".$subject; |
|
69 |
return $url; |
|
69 | 70 |
}; |
70 | 71 |
} |
71 | 72 |
|
... | ... | |
85 | 86 |
} |
86 | 87 |
else $target = "tbl_structure"; |
87 | 88 |
} |
88 |
return $url."&target=".$target; |
|
89 |
$url .= "&target=".$target; |
|
90 |
return $url; |
|
89 | 91 |
}; |
90 | 92 |
} |
91 | 93 |
|
Also available in: Unified diff
web/vegpath/index.php: php*Admin(): Append $target to $url in separate step from returning $url, to make it easier to debug-print the value of $url before returning it