Author: ornicar2
Date: 2010-02-04 00:56:03 +0100 (Thu, 04 Feb 2010)
New Revision: 27526
Modified:
plugins/diemPlugin/trunk/dmAdminPlugin/web/css/dataTable.css
plugins/diemPlugin/trunk/dmCorePlugin/lib/doctrine/loremizer/dmRecordLoremizer.php
Log:
[Diem]
- fixed issue on record_loremizer service for "int" columns
- fixed admin log view overflow
Modified: plugins/diemPlugin/trunk/dmAdminPlugin/web/css/dataTable.css
===================================================================
--- plugins/diemPlugin/trunk/dmAdminPlugin/web/css/dataTable.css
2010-02-03 23:53:32 UTC (rev 27525)
+++ plugins/diemPlugin/trunk/dmAdminPlugin/web/css/dataTable.css
2010-02-03 23:56:03 UTC (rev 27526)
@@ -18,6 +18,7 @@
div.dm_data td {
border-top: 1px dotted #ddd;
max-width: 600px;
+ overflow: hidden;
}
div.dm_data tr.odd {
Modified:
plugins/diemPlugin/trunk/dmCorePlugin/lib/doctrine/loremizer/dmRecordLoremizer.php
===================================================================
---
plugins/diemPlugin/trunk/dmCorePlugin/lib/doctrine/loremizer/dmRecordLoremizer.php
2010-02-03 23:53:32 UTC (rev 27525)
+++
plugins/diemPlugin/trunk/dmCorePlugin/lib/doctrine/loremizer/dmRecordLoremizer.php
2010-02-03 23:56:03 UTC (rev 27526)
@@ -159,6 +159,7 @@
$val = $column['values'][array_rand($column['values'])];
break;
case 'integer':
+ case 'int':
$val = mt_rand(0, pow(10, $column['length']) - 1);
break;
case 'float':
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.