Changeset 64
- Timestamp:
- 07/12/08 13:55:14 (2 years ago)
- Files:
-
- trunk/apps/main/modules/companies/templates/_filterForm.php (modified) (2 diffs)
- trunk/apps/main/modules/companies/templates/_form.php (modified) (2 diffs)
- trunk/apps/main/modules/companies/templates/connectSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/companies/templates/contactSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/jobs/templates/_filterForm.php (modified) (2 diffs)
- trunk/apps/main/modules/jobs/templates/_form.php (modified) (2 diffs)
- trunk/apps/main/modules/people/templates/_filterForm.php (modified) (2 diffs)
- trunk/apps/main/modules/people/templates/contactSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/people/templates/recommendSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/sfGuardAuth/templates/changePasswordSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/sfGuardAuth/templates/forgotPasswordSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/sfGuardAuth/templates/profileSuccess.php (modified) (3 diffs)
- trunk/apps/main/modules/sfGuardAuth/templates/registerSuccess.php (modified) (1 diff)
- trunk/apps/main/modules/sfGuardAuth/templates/resendActivationSuccess.php (modified) (1 diff)
- trunk/apps/main/modules/sfGuardAuth/templates/skillsSuccess.php (modified) (2 diffs)
- trunk/apps/main/modules/sfLucene/templates/advancedSearchControls.php (modified) (1 diff)
- trunk/apps/main/modules/utils/templates/contactSuccess.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/apps/main/modules/companies/templates/_filterForm.php
r2 r64 1 < ?php echo form_tag('@companies_home', 'method=get id=country_form') ?>1 <form action="<?php echo url_for('@companies_home') ?>" method="get" id="country_form"> 2 2 <?php echo label_for('country', __('Filter by country')) ?> 3 3 <?php echo select_tag('country', … … 6 6 array('include_custom' => __('All countries')))) ?> 7 7 <?php echo submit_tag(__('Filter')) ?> 8 < ?php echo end_form() ?>8 </form> trunk/apps/main/modules/companies/templates/_form.php
r2 r64 10 10 </p> 11 11 12 < ?php echo form_tag($form_route, 'multipart=true') ?>12 <form action="<?php echo url_for($form_route) ?>" method="post" enctype="multipart/form-data"> 13 13 <div class="fiftypercent"> 14 14 <fieldset> … … 92 92 </p> 93 93 </div> 94 < ?php echo end_form() ?>94 </form> trunk/apps/main/modules/companies/templates/connectSuccess.php
r2 r64 36 36 </p> 37 37 38 < ?php echo form_tag($sf_data->getRaw('form_action')) ?>38 <form action="<?php echo url_for($sf_data->getRaw('form_action')) ?>" method="post"> 39 39 <div class="fiftypercent"> 40 40 <fieldset> … … 79 79 </p> 80 80 </div> 81 < ?php echo end_form() ?>81 </form> trunk/apps/main/modules/companies/templates/contactSuccess.php
r2 r64 17 17 </p> 18 18 19 < ?php echo form_tag('@company_contact?slug='.$company->getSlug()) ?>19 <form action="<?php echo url_for('@company_contact?slug='.$company->getSlug()) ?>" method="post"> 20 20 <fieldset> 21 21 <legend><?php echo __('Fill the form then send your message') ?></legend> … … 46 46 </div> 47 47 </fieldset> 48 < ?php echo end_form() ?>48 </form> trunk/apps/main/modules/jobs/templates/_filterForm.php
r2 r64 1 < ?php echo form_tag('@jobs_home', 'method=get id=country_form') ?>1 <form action="<?php echo url_for('@jobs_home') ?>" method="get" id="country_form"> 2 2 <p> 3 3 <?php echo label_for('country', __('Filter by country')) ?> … … 21 21 <?php echo submit_tag(__('Filter')) ?> 22 22 </p> 23 < ?php echo end_form() ?>23 </form> trunk/apps/main/modules/jobs/templates/_form.php
r2 r64 10 10 </p> 11 11 12 < ?php echo form_tag($form_route, 'multipart=true') ?>12 <form action="<?php echo url_for($form_route) ?>" method="post" enctype="multipart/form-data"> 13 13 <div class="fiftypercent"> 14 14 <fieldset> … … 90 90 </p> 91 91 </div> 92 < ?php echo end_form() ?>92 </form> trunk/apps/main/modules/people/templates/_filterForm.php
r2 r64 1 < ?php echo form_tag('@people_home', 'method=get id=country_form') ?>1 <form action="<?php echo url_for('@people_home') ?>" method="get" id="country_form"> 2 2 <p> 3 3 <?php echo label_for('country', __('Filter by country')) ?> … … 27 27 <?php echo submit_tag(__('Filter')) ?> 28 28 </p> 29 < ?php echo end_form() ?>29 </form> trunk/apps/main/modules/people/templates/contactSuccess.php
r2 r64 13 13 <h2><?php echo $page_title ?><span class="gradient"> </span></h2> 14 14 15 < ?php echo form_tag('@person_contact?to_username='.$recipient->getUsername()) ?>15 <form action="<?php echo url_for('@person_contact?to_username='.$recipient->getUsername()) ?>" method="post"> 16 16 <fieldset> 17 17 <legend><?php echo __('Fill the form then send your message') ?></legend> … … 43 43 </p> 44 44 </fieldset> 45 < ?php echo end_form() ?>45 </form> trunk/apps/main/modules/people/templates/recommendSuccess.php
r2 r64 18 18 <h2><?php echo $page_title ?><span class="gradient"> </span></h2> 19 19 20 < ?php echo form_tag('@person_recommend?to_username='.$user->getUsername()) ?>20 <form action="<?php echo url_for('@person_recommend?to_username='.$user->getUsername()) ?>" method="post"> 21 21 <fieldset> 22 22 <legend><?php echo __('Explain why you recommend this person') ?></legend> … … 35 35 </p> 36 36 </fieldset> 37 < ?php echo end_form() ?>37 </form> trunk/apps/main/modules/sfGuardAuth/templates/changePasswordSuccess.php
r2 r64 15 15 </p> 16 16 17 < ?php echo form_tag('@user_password_change') ?>17 <form action="<?php echo url_for('@user_password_change') ?>" method="post"> 18 18 <div class="fiftypercent"> 19 19 <fieldset> … … 41 41 </fieldset> 42 42 </div> 43 < ?php echo end_form() ?>43 </form> trunk/apps/main/modules/sfGuardAuth/templates/forgotPasswordSuccess.php
r2 r64 18 18 </p> 19 19 20 < ?php echo form_tag('@user_forgot_password') ?>20 <form action="<?php echo url_for('@user_forgot_password') ?>" method="post"> 21 21 <div class="fiftypercent"> 22 22 <fieldset> … … 42 42 </fieldset> 43 43 </div> 44 < ?php echo end_form() ?>44 </form> trunk/apps/main/modules/sfGuardAuth/templates/profileSuccess.php
r2 r64 17 17 <?php echo submit_tag(__('Remove this picture')) ?> 18 18 </p> 19 < ?php echo end_form() ?>19 </form> 20 20 <?php else: ?> 21 21 <p><?php echo __('You have currently no picture associated to your profile') ?></p> … … 43 43 </p> 44 44 45 < ?php echo form_tag('@user_profile', 'multipart=true') ?>45 <form action="<?php echo url_for('@user_profile', 'multipart=true') ?>" method="post" enctype="multipart/form-data"> 46 46 <div class="fiftypercent"> 47 47 <fieldset> … … 206 206 </p> 207 207 </div> 208 < ?php echo end_form() ?>208 </form> trunk/apps/main/modules/sfGuardAuth/templates/registerSuccess.php
r56 r64 51 51 </p> 52 52 </div> 53 < ?php echo end_form() ?>53 </form> trunk/apps/main/modules/sfGuardAuth/templates/resendActivationSuccess.php
r56 r64 36 36 </fieldset> 37 37 </div> 38 < ?php echo end_form() ?>38 </form> trunk/apps/main/modules/sfGuardAuth/templates/skillsSuccess.php
r2 r64 16 16 </p> 17 17 18 < ?php echo form_tag('@user_profile_skills') ?>18 <form action="<?php echo url_for('@user_profile_skills') ?>" method="post"> 19 19 <ul class="skills_list"> 20 20 <?php $i = 0; foreach ($skill_tags as $skill): ?> … … 28 28 <?php echo submit_tag(__('Update your skills')) ?> 29 29 </p> 30 < ?php echo end_form() ?>30 </form> trunk/apps/main/modules/sfLucene/templates/advancedSearchControls.php
r2 r64 10 10 <h2><?php echo $page_title ?><span class="gradient"> </span></h2> 11 11 12 < ?php echo form_tag('sfLucene/advancedSearch', 'method=get') ?>12 <form action="<?php echo url_for('sfLucene/advancedSearch') ?>" method="get"> 13 13 <fieldset> 14 14 <legend><?php echo __('Search Terms') ?></legend> trunk/apps/main/modules/utils/templates/contactSuccess.php
r2 r64 5 5 <h2><?php echo __('Contact') ?><span class="gradient"> </span></h2> 6 6 7 < ?php echo form_tag('@contact') ?>7 <form action="<?php echo url_for('@contact') ?>" method="post"> 8 8 <fieldset> 9 9 <legend><?php echo __('Fill the form then send your message') ?></legend> … … 39 39 </div> 40 40 </fieldset> 41 < ?php echo end_form() ?>41 </form>
