<br><br><div class="gmail_quote">On Mon, Mar 8, 2010 at 9:28 PM, Michal Čihař <span dir="ltr"><<a href="mailto:michal@cihar.com">michal@cihar.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

Hi<br>
<br>
Dne Sun, 07 Mar 2010 10:32:30 +0100<br>
Michael Keck <<a href="mailto:sfnet@michaelkeck.de">sfnet@michaelkeck.de</a>> napsal(a):<br>
<br>
> That was the problem. Now I've fixed it with this hack:<br>
><br>
> if (isset($GLOBALS['PMA_Config']) && $GLOBALS['PMA_Config']->get('fontsize') !== null) {<br>
>     $pma_fsize = $GLOBALS['PMA_Config']->get('fontsize');<br>
> } else if (isset($_SESSION['PMA_Config']) && $_SESSION['PMA_Config']->get('fontsize')) {<br>
>     $pma_fsize = $_SESSION['PMA_Config']->get('fontsize');<br>
> } else {<br>
>     if (isset($_COOKIE['pma_fontsize'])) {<br>
>         $pma_fsize = $_COOKIE['pma_fontsize'];<br>
>     }<br>
> }<br>
> $pma_fsize = preg_replace("/[^0-9]/", "", $pma_fsize);<br>
> if (!empty($pma_fsize)) {<br>
>     $pma_fsize = ($pma_fsize * 0.01);<br>
> } else {<br>
>     $pma_fsize = 1;<br>
> }<br>
><br>
> This can be a solution on many themes at the moment.<br>
> But - why do we have so many different things to store PMA_Configs?<br>
<br>
It used to be in session data, but it turned out to be wrong decision -<br>
we don't want to store sensitive data in session (eg. user password<br>
would end up there).</blockquote><div><br>Please pardon my ignorance if this question is too trivial but what exactly is the problem in storing sensitive user information in the Session variables. I mean is it only that when running on a local machine someone might see the password in the temporary  session file generated in the temp folder or something else?  <br>

 </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"> That's why it has been moved to globals (in<br>
trunk, targeted for 3.4).<br>
<br>
Anyway I think that this code should be rather in some functions and<br>
all themes would use it.<br>
<font color="#888888"><br>
--<br>
        Michal Čihař | <a href="http://cihar.com" target="_blank">http://cihar.com</a> | <a href="http://blog.cihar.com" target="_blank">http://blog.cihar.com</a><br>
</font><br>------------------------------------------------------------------------------<br>
Download Intel&#174; Parallel Studio Eval<br>
Try the new software tools for yourself. Speed compiling, find bugs<br>
proactively, and fine-tune applications for parallel performance.<br>
See why Intel Parallel Studio got high marks during beta.<br>
<a href="http://p.sf.net/sfu/intel-sw-dev" target="_blank">http://p.sf.net/sfu/intel-sw-dev</a><br>_______________________________________________<br>
Phpmyadmin-devel mailing list<br>
<a href="mailto:Phpmyadmin-devel@lists.sourceforge.net">Phpmyadmin-devel@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Rohit Kalhans<br>