Jump to content
The Uniform Server Community

phpMyAdmin 3.4.9 in Coral 8.1.1


Harbinger
 Share

Recommended Posts

Ain't new code great?

I've seen this as well, but I haven't had time to check into this. I would guess that it's a "feature" of the latest formatting for phpMyAdmin. :)

Now, one thing you might try is to use another skin. (EDIT: This doesn't resolve the problem.)

 

Update: I looked at this for several different DBs, but couldn't see either a fix or a clear pattern of just what is happening.

I think it's just faulty coding of the combining code for that column.

Which is as far as we go. Our role with The Uniform Server is to put together the pieces so that you can use them easily. If there are bugs

in the pieces, we don't have the resources to fix them, but must rely on the respective developers.

 

Regards,

BobS

Link to comment
Share on other sites

I found a fix to this, but is the same for Orion and Coral..

So I dont no what the source is of this bug..

 

From..

 ( navigation.php on line 646 )
// preserve spaces in table name
. str_replace(' ', ' ', htmlspecialchars($table['disp_name'])) . '</a>';
echo '</li>' . "\n";

 

To this..

 ( navigation.php on line 646 )
// preserve spaces in table name
. str_replace(' ', ' ', htmlspecialchars($table['Name'])) . '</a>';
echo '</li>' . "\n";

Link to comment
Share on other sites

Great!

I see that this actually works, but OTOH I'd like to see the source of your fix. It may be that there is an "official" fix that does this with a bit more finesse.

In the meantime, I'd recommend that users who wish to apply this "quick-fix" for the problem do so.

 

Regards,

BobS

Link to comment
Share on other sites

Ermm... I can't seem to replicate this in Coral 8.0; perhaps I'm not looking at the right place? Table names are displayed correctly here on the left hand frame.

<p class="bbc_center"><span style="font-size:12px;"><strong>Yoni</strong></span></p>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...