From: Alexandre Emsenhuber Date: Mon, 1 Oct 2012 16:16:38 +0000 (+0200) Subject: Convert valign HTML attribute into inline CSS X-Git-Tag: 1.31.0-rc.0~22188^2 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=737b29472bac2a99bc95ff3d5799c969eb548b7d;p=lhc%2Fweb%2Fwiklou.git Convert valign HTML attribute into inline CSS Change-Id: I62c14f3373e6f8b35c73a02fd042c79a01fab814 --- diff --git a/includes/actions/InfoAction.php b/includes/actions/InfoAction.php index e27e53e770..b523111c22 100644 --- a/includes/actions/InfoAction.php +++ b/includes/actions/InfoAction.php @@ -474,7 +474,7 @@ class InfoAction extends FormlessAction { */ protected function addRow( $table, $name, $value ) { return $table . Html::rawElement( 'tr', array(), - Html::rawElement( 'td', array( 'valign' => 'top' ), $name ) . + Html::rawElement( 'td', array( 'style' => 'vertical-align: top;' ), $name ) . Html::rawElement( 'td', array(), $value ) ); }