diff options
author | Bot <bot@myigel.name> | 2017-01-21 19:37:42 +0100 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2017-01-21 20:12:35 +0100 |
commit | 915ce28feeb9104bf7854ccbd80caebb5dce4aaa (patch) | |
tree | 503a31809070fee875e82213d46b90fb0b2fcac9 /includes/pages/guest_login.php | |
parent | 9a3ad8883403949a59e8935497a548ec536f1d40 (diff) |
Replaced " with '
Diffstat (limited to 'includes/pages/guest_login.php')
-rw-r--r-- | includes/pages/guest_login.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php index f08f9260..647fa585 100644 --- a/includes/pages/guest_login.php +++ b/includes/pages/guest_login.php @@ -155,7 +155,7 @@ function guest_register() if (isset($_REQUEST['prename'])) { $preName = strip_request_item('prename'); } - if (isset($_REQUEST['age']) && preg_match("/^[0-9]{0,4}$/", $_REQUEST['age'])) { + if (isset($_REQUEST['age']) && preg_match('/^[0-9]{0,4}$/', $_REQUEST['age'])) { $age = strip_request_item('age'); } if (isset($_REQUEST['tel'])) { @@ -317,8 +317,8 @@ function guest_register() ]), form_checkboxes( 'angel_types', - _("What do you want to do?") . sprintf( - " (<a href=\"%s\">%s</a>)", + _('What do you want to do?') . sprintf( + ' (<a href="%s">%s</a>)', page_link_to('angeltypes') . '&action=about', _('Description of job types') ), |