diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-01-21 18:20:58 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-01-21 18:20:58 +0000 |
| commit | f47875d30173c29102bdbf3a865daf8e68150a77 (patch) | |
| tree | c10a19a790aa093cd68b375c5c6b2d29cc4498c1 | |
| parent | a352a6e7b932441f55f98cab09af147f96e7be0f (diff) | |
| download | webtrees-f47875d30173c29102bdbf3a865daf8e68150a77.tar.gz webtrees-f47875d30173c29102bdbf3a865daf8e68150a77.tar.bz2 webtrees-f47875d30173c29102bdbf3a865daf8e68150a77.zip | |
Short tags are not always available in PHP5.3
| -rw-r--r-- | admin_trees_places.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin_trees_places.php b/admin_trees_places.php index 2c0283510b..48e2e6e566 100644 --- a/admin_trees_places.php +++ b/admin_trees_places.php @@ -97,9 +97,9 @@ $controller <dt><?php echo WT_I18N::translate('Family tree'); ?></dt> <dd><?php echo select_edit_control('ged', WT_Tree::getNameList(), null, WT_GEDCOM); ?></dd> <dt><label for="search"><?php echo WT_I18N::translate('Search for'); ?></label></dt> - <dd><input name="search" id="search" type="text" size="30" value="<?= WT_Filter::escapeHtml($search) ?>" required autofocus></dd> + <dd><input name="search" id="search" type="text" size="30" value="<?php echo WT_Filter::escapeHtml($search) ?>" required autofocus></dd> <dt><label for="replace"><?php echo WT_I18N::translate('Replace with'); ?></label></dt> - <dd><input name="replace" id="replace" type="text" size="30" value="<?= WT_Filter::escapeHtml($replace) ?>" required></dd> + <dd><input name="replace" id="replace" type="text" size="30" value="<?php echo WT_Filter::escapeHtml($replace) ?>" required></dd> </dl> <button type="submit" value="preview"><?php echo /* I18N: button label */ WT_I18N::translate('preview'); ?></button> <button type="submit" value="update" name="confirm"><?php echo /* I18N: button label */ WT_I18N::translate('update'); ?></button> |
