2010-05-09 Raul Mateos <raulofpandora@gmail.com>
* godmode/setup/file_manager.php: Changed deprecated split() function to explode(). Center delete image. * modules/manage_network_components.php: Center delete image. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2679 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
942ee05e8b
commit
9bc6441414
|
@ -1,3 +1,10 @@
|
||||||
|
2010-05-09 Raúl Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
|
* godmode/setup/file_manager.php: Changed deprecated split() function to
|
||||||
|
explode(). Center delete image.
|
||||||
|
|
||||||
|
* modules/manage_network_components.php: Center delete image.
|
||||||
|
|
||||||
2010-05-07 Ramon Novoa <rnovoa@artica.es>
|
2010-05-07 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
* include/functions_reporting.php, include/fgraph.php,
|
* include/functions_reporting.php, include/fgraph.php,
|
||||||
|
|
|
@ -299,6 +299,7 @@ $table->head[5] = __('Max/Min');
|
||||||
$table->head[6] = __('Action');
|
$table->head[6] = __('Action');
|
||||||
$table->size = array ();
|
$table->size = array ();
|
||||||
$table->size[6] = '50px';
|
$table->size[6] = '50px';
|
||||||
|
$table->align[6] = 'center';
|
||||||
$table->data = array ();
|
$table->data = array ();
|
||||||
|
|
||||||
foreach ($components as $component) {
|
foreach ($components as $component) {
|
||||||
|
|
|
@ -139,6 +139,7 @@ $table->colspan = array ();
|
||||||
$table->data = array ();
|
$table->data = array ();
|
||||||
$table->head = array ();
|
$table->head = array ();
|
||||||
$table->size = array ();
|
$table->size = array ();
|
||||||
|
$table->align[4] = 'center';
|
||||||
|
|
||||||
$table->size[0] = '24px';
|
$table->size[0] = '24px';
|
||||||
|
|
||||||
|
@ -148,7 +149,7 @@ $table->head[2] = __('Last modification');
|
||||||
$table->head[3] = __('Size');
|
$table->head[3] = __('Size');
|
||||||
$table->head[4] = __('Delete');
|
$table->head[4] = __('Delete');
|
||||||
|
|
||||||
$prev_dir = split ("/", $directory);
|
$prev_dir = explode ("/", $directory);
|
||||||
$prev_dir_str = "";
|
$prev_dir_str = "";
|
||||||
for ($i = 0; $i < (count ($prev_dir) - 1); $i++) {
|
for ($i = 0; $i < (count ($prev_dir) - 1); $i++) {
|
||||||
$prev_dir_str .= $prev_dir[$i];
|
$prev_dir_str .= $prev_dir[$i];
|
||||||
|
|
Loading…
Reference in New Issue