Jump to content

Hardcoded column name in Colorize nodes

Featured Replies

Posted

I'm trying to use the Colorize Node feature in my apps but I'm getting on streams:

  Quote

SELECT `rc_id`, `rc_name_furl`, `feature_color` FROM `raffles_categories` WHERE ( rc_id IN(1) )
IPS\Db\Exception: Unknown column 'feature_color' in 'field list' (1054)

That's because you hardcoded the column name in IPS\Node\Colorize to be used in FORUMS app only.

/**
 * Colorize Trait
 */
trait Colorize
{
	/**
	 * @brief	Table column name that holds the feature color hex
	 */
	public static $featureColumnName = 'feature_color';

If I rename my column to remove the table prefix, then it works:

ZsK96UE.png

But that's not right. It should've been done like reaction, where you pass the ID.

Thanks, I've brought this up in our internal tracker

  • 4 weeks later...
  • Author
 

Thanks, I've brought this up in our internal tracker

Brandon, as it isn't on 4.2.6 (at least until Beta 3), please make sure it will be on 4.3.

Thank you.

  • 3 months later...
  • Author
 

Thanks, I've brought this up in our internal tracker

Brandon, just a remind to change this in 4.3.

:)

  • 1 month later...
  • Author

Still hardcoded in 4.3. ?

  • 2 weeks later...

It would be better to open a ticket than wait.

That's not really a big deal. Sure it's not the best setup, but it's minor compared to other areas I run into, such as methods where there's no way to do something without totally overwriting a large method, such as during the content item creation process.

This has been fixed in 4.3.0. Mark my post as best answer :laugh:

Archived

This topic is now archived and is closed to further replies.

Recently Browsing 0

  • No registered users viewing this page.