1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 06:55:25 +02:00

[ticket/13766] Add style_parent_id in textformater's data_access::get_styles()

PHPBB3-13766
This commit is contained in:
MateBartus 2015-04-16 23:28:52 +02:00
parent f077b72d0d
commit f23fe9e69d

View File

@ -115,7 +115,7 @@ class data_access
*/
protected function get_styles()
{
$sql = 'SELECT style_id, style_path, bbcode_bitfield FROM ' . $this->styles_table;
$sql = 'SELECT style_id, style_path, style_parent_id, bbcode_bitfield FROM ' . $this->styles_table;
$result = $this->db->sql_query($sql);
$rows = $this->db->sql_fetchrowset($result);
$this->db->sql_freeresult($result);