Closed (fixed)
Project:
Page Title
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Aug 2011 at 21:17 UTC
Updated:
22 May 2012 at 12:10 UTC
Jump to comment: Most recent file
Comments
Comment #1
finkenmann commentedSame problem here. Once i've typed something in, it's not possible to delete it later. I had to clear it in the page_title database table.
Comment #2
hctomsubscribing... same problem here
Comment #3
Rickdrummer commentedsubscribe
Comment #4
giorgoskplease test
Comment #5
akalata commentedCode changes are successful, but patch had to be applied from Drupal's webroot rather than the module's folder. I'm not sure what the best practices are for that.
Comment #6
giorgoskso lets set this to RTBC
Comment #7
tmedlen commentedPatch worked for me, had no problem patching from module directory either.
Comment #8
SamH commentedI tested Giorgos's patch, and it works correctly. I'm reuploading the patch with correct pathing.
Comment #9
ttjordan81 commentedIt works for me.... RTBC....
Comment #10
ttjordan81 commentedIt works for me.... RTBC....
Comment #11
jaime@gingerrobot.com commentedIt works for me too. Thankyou.
Comment #12
Energyblazar commentedhow do i use this patch in a live site ?
Comment #13
SamH commented@Energyblazar,
Make sure to try this in a development environment before you do anything on a live site :)
To apply the patch:
Making and applying Drupal patches with git
Applying patches with git
If you are not using git, this command will also work:
patch -p1 < patch-file-name.patchLet me know if that doesn't make sense.
Comment #14
nicholasthompsonI'm rejecting the patch because it results in an empty row in the DB.
We need it to remove the row if empty, otherwise we could end up with thousands of no-value rows in the DB which is simply wasteful and inefficient.
Good catch on the bug though, working on it now.
Comment #15
nicholasthompsonFixed in dev with the following:
Basically, if the "length > 0" then we do an UPDATE/INSERT SQL otherwise we just do a DELETE.