Skip to content

Commit

Permalink
changed: reverted: removed autocomplete="off" on list <form> tags, as…
Browse files Browse the repository at this point in the history
… data now correctly loaded via browser history, if ajax filtering had been previously applied
pollen8 committed May 10, 2013
1 parent 670ef64 commit 952ee32
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion components/com_fabrik/views/list/tmpl/admin/default.php
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@
<h1><?php echo $this->table->label;?></h1>
<?php endif;
echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">

<?php echo $this->loadTemplate('buttons');
if ($this->showFilters) :
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
// No direct access
defined('_JEXEC') or die;
?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="<?php echo $this->formid;?>">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="<?php echo $this->formid;?>">

<?php
/*
2 changes: 1 addition & 1 deletion components/com_fabrik/views/list/tmpl/bluesky/default.php
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
<?php endif;?>

<?php echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<?php
echo $this->loadTemplate('buttons');
if ($this->showFilters) :
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
defined('_JEXEC') or die;
?>
<div class="emptyDataMessage" style="<?php echo $this->emptyStyle?>"><?php echo $this->emptyDataMessage; ?></div>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikTable">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikTable">
<?php if ($this->params->get('show-title', 1)) :?>
<div class="page-header">
<h1 class="fabrikTableHeading"><?php echo $this->table->label;?></h1>
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
<?php }?>

<?php echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">

<?php

2 changes: 1 addition & 1 deletion components/com_fabrik/views/list/tmpl/default/default.php
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
<?php endif;?>

<?php echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" autocomplete="off" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">

<?php echo $this->loadTemplate('buttons');
if ($this->showFilters) :
2 changes: 1 addition & 1 deletion components/com_fabrik/views/list/tmpl/div/default.php
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
<?php }?>

<?php echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">

<?php echo $this->loadTemplate('buttons');

2 changes: 1 addition & 1 deletion components/com_fabrik/views/list/tmpl/f3/default.php
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@
<h1><?php echo $this->table->label;?></h1>
<?php }?>
<?php echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<?php echo $this->loadTemplate('header')?>
<?php
//for some really ODD reason loading the headings template inside the group
2 changes: 1 addition & 1 deletion components/com_fabrik/views/list/tmpl/iwebkit/default.php
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@
</div>
</div>
<?php echo $this->table->intro;?>
<form class="fabrikForm" action="<?php echo $this->table->action;?>" autocomplete="off" method="post" id="<?php echo $this->formid;?>" name="fabrikList">
<form class="fabrikForm" action="<?php echo $this->table->action;?>" method="post" id="<?php echo $this->formid;?>" name="fabrikList">

<?php echo $this->loadTemplate('buttons');

0 comments on commit 952ee32

Please sign in to comment.