Revision 917
Added by aldus almost 17 years ago
| index.php | ||
|---|---|---|
| 101 | 101 |
$template->set_var('ADVANCED_ACTION', 'index.php');
|
| 102 | 102 |
|
| 103 | 103 |
// Tell the browser whether or not to show advanced options |
| 104 |
if(isset($_POST['advanced']) AND $_POST['advanced'] == $TEXT['SHOW_ADVANCED'].' >>') {
|
|
| 104 |
if ( true == (isset( $_POST['advanced']) AND ( strpos( $_POST['advanced'], ">>") > 0 ) ) ) {
|
|
| 105 | 105 |
$template->set_var('DISPLAY_ADVANCED', '');
|
| 106 | 106 |
$template->set_var('DISPLAY_BASIC', 'none');
|
| 107 | 107 |
$template->set_var('ADVANCED', 'yes');
|
Also available in: Unified diff
Bugfix for ticket #680: change the condition-test to get rid of the utf-8 problematic if the languange contains entities on the button-label.