Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Hello Dolly : Uncaught exception 'Error' with message 'Call to undefined function add_action() #6553

Open
wants to merge 49 commits into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
efc4882
Fix Uncaught exception Error with message 'Call to undefined function…
deepakrohillas May 15, 2024
8332cbf
Merge pull request #1 from deepakrohillas/deepakrohillas-patch-hello_…
deepakrohillas May 15, 2024
9c32016
Fix Hello Dolly : Uncaught exception 'Error' with message ' suggested…
deepakrohillas May 16, 2024
e0bf93f
Merge branch 'WordPress:trunk' into trunk
deepakrohillas May 23, 2024
b542011
PHP message: PHP Fatal error: Uncaught Error: Undefined constant "ABS…
deepakrohillas May 23, 2024
e9bfe06
remove changes
deepakrohillas May 23, 2024
ca3bcf4
Merge branch 'WordPress:trunk' into trunk
deepakrohillas May 24, 2024
0bb77bc
Update hello.php
deepakrohillas May 27, 2024
e66ea99
Merge branch 'WordPress:trunk' into trunk
deepakrohillas May 29, 2024
f296585
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jun 4, 2024
1cf6ece
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jun 4, 2024
5c8b971
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jun 15, 2024
2c753db
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jun 22, 2024
ca7d15b
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jun 23, 2024
638adac
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jun 30, 2024
6682237
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jul 14, 2024
8f20e8c
Update hello.php
deepakrohillas Jul 19, 2024
945ea5f
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jul 23, 2024
db3b596
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jul 24, 2024
dfb0ec6
Update hello.php
deepakrohillas Jul 27, 2024
b62e5ae
Update hello.php
deepakrohillas Jul 27, 2024
da22274
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Aug 19, 2024
131b76f
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Aug 22, 2024
610da0b
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 5, 2024
6797f93
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 7, 2024
d093b8c
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 8, 2024
3b475f3
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 15, 2024
33832c1
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 18, 2024
cef2f8c
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 24, 2024
9314cd9
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 25, 2024
2ba50c8
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 25, 2024
bf670e7
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 27, 2024
89c4d5d
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Sep 28, 2024
6095bfc
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 3, 2024
6367b8f
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 5, 2024
1cc2f66
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 8, 2024
b4a3659
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 10, 2024
975a3b0
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 17, 2024
0d72ad4
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 19, 2024
a99a9d0
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 23, 2024
c40a92e
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 28, 2024
bac46e8
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Oct 29, 2024
7176f6f
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Nov 2, 2024
77f77e0
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Nov 19, 2024
9e69b17
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Nov 25, 2024
2716128
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Nov 29, 2024
c8102a4
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Dec 7, 2024
75da9da
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Dec 29, 2024
189681b
Merge branch 'WordPress:trunk' into trunk
deepakrohillas Jan 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/wp-content/plugins/hello.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
Author URI: http://ma.tt/
*/

// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die();
}

function hello_dolly_get_lyric() {
/** These are the lyrics to Hello Dolly */
$lyrics = "Hello, Dolly
Expand Down
Loading