]> git.wh0rd.org - tt-rss.git/commitdiff
register.php: remove short php tags
authorAndrew Dolgov <fox@bah.org.ru>
Thu, 24 Dec 2009 12:46:57 +0000 (15:46 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Thu, 24 Dec 2009 12:46:57 +0000 (15:46 +0300)
register.php

index bb868beb4ba9a37e1562ef4e6ee141187c3f4ffe..9969d83ba8e2c369d3d83c91d80f0fa349d7cb9c 100644 (file)
                $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 -->
 
                        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> 
        
                                <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"]));
                }
        ?>
 
-<? } else { ?>
+<?php } else { ?>
 
        <?php print_notice(__('New user registrations are currently closed.')) ?>
 
                                <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
                                </form>"; ?>
 
-<? } ?>
+<?php } ?>
 
 </body>
 </html>