mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-11-03 20:45:58 +01:00 
			
		
		
		
	fix: #12645, use titleRaw like reply button
This commit is contained in:
		@@ -115,7 +115,7 @@ define('quickreply', [
 | 
				
			|||||||
			const textEl = components.get('topic/quickreply/text');
 | 
								const textEl = components.get('topic/quickreply/text');
 | 
				
			||||||
			composer.newReply({
 | 
								composer.newReply({
 | 
				
			||||||
				tid: ajaxify.data.tid,
 | 
									tid: ajaxify.data.tid,
 | 
				
			||||||
				title: ajaxify.data.title,
 | 
									title: ajaxify.data.titleRaw,
 | 
				
			||||||
				body: textEl.val(),
 | 
									body: textEl.val(),
 | 
				
			||||||
			});
 | 
								});
 | 
				
			||||||
			textEl.val('');
 | 
								textEl.val('');
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user