summaryrefslogtreecommitdiff
path: root/register.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-12-24 15:46:57 +0300
committerAndrew Dolgov <[email protected]>2009-12-24 15:46:57 +0300
commit0844d6a9c0db01833761667bdd9597696ccf6e02 (patch)
treed6a436272143e42cfeba01e1aacbf4501648caed /register.php
parent7f969260c1845d76b223197fd4392dd1576d548e (diff)
register.php: remove short php tags
Diffstat (limited to 'register.php')
-rw-r--r--register.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/register.php b/register.php
index bb868beb4..9969d83ba 100644
--- a/register.php
+++ b/register.php
@@ -163,7 +163,7 @@
$num_users = db_fetch_result($result, 0, "cu");
} ?>
-<? if (!REG_MAX_USERS || $num_users < REG_MAX_USERS) { ?>
+<?php if (!REG_MAX_USERS || $num_users < REG_MAX_USERS) { ?>
<!-- If you have any rules or ToS you'd like to display, enter them here -->
@@ -171,7 +171,7 @@
require_once "templates/register_notice.txt";
} ?>
- <? if (!$action) { ?>
+ <?php if (!$action) { ?>
<p><?php echo __('Your temporary password will be sent to the specified email. Accounts, which were not logged in once, are erased automatically 24 hours after temporary password is sent.') ?></p>
@@ -200,9 +200,9 @@
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>"; ?>
- <? } else if ($action == "do_register") { ?>
+ <?php } else if ($action == "do_register") { ?>
- <?
+ <?php
$login = mb_strtolower(trim(db_escape_string($_REQUEST["login"])));
$email = trim(db_escape_string($_REQUEST["email"]));
$test = trim(db_escape_string($_REQUEST["turing_test"]));
@@ -345,7 +345,7 @@
}
?>
-<? } else { ?>
+<?php } else { ?>
<?php print_notice(__('New user registrations are currently closed.')) ?>
@@ -353,7 +353,7 @@
<input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
</form>"; ?>
-<? } ?>
+<?php } ?>
</body>
</html>